Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Member not found" Error #23

Closed
vmitchell85 opened this issue Dec 8, 2011 · 6 comments
Closed

"Member not found" Error #23

vmitchell85 opened this issue Dec 8, 2011 · 6 comments

Comments

@vmitchell85
Copy link

I am developing a contact us page and I'm using the validate plugin as well as the selectToAutocomplete plugin. Everything works great in Chrome but in IE the form will submit without validation and the browser shows the following error:

Message: Member not found.

Line: 2
Char: 30636
Code: 0
URI: jquery-1.7.1.min.js

Now, I do realize that the error is from my jquery file but when I remove the jquery statement that calls selectToAutocomplete everything works like normal.

Thanks,

  • Vince
@jamieholst
Copy link
Owner

This sounds like a bug.. could you provide the jQuery statement (or at least the part that calls selectToAutocomplete).. e.g. is it chained? (Chaining should be possible, but maybe there's an IE issue with it.)

@vmitchell85
Copy link
Author

Not sure I'm skilled enough with jquery to tell you if it's chained... I've uploaded it to my test site here: http://test.stickmanstudios.com/country/contactus.htm so you can see the page and code... Let me know if you need more info.

Thanks,

  • Vince

@jamieholst
Copy link
Owner

Hi @vmitchell85

Could you try the latest version (1.0.5) of the plugin? I've made the plugin skip initialization in IE7 and below so it doesn't fail.

(See this commit for the fix.)

@weezer311
Copy link

I was having the same issue. I found the problem to be with the Doctype. I was using HTML 4.01 Transitional. I switched it to HTML 5 and it works. Likely something to do with how IE falls into quirks mode.

@timcooper
Copy link
Contributor

Didn't see this issue before I made a pull request, but it's a bug to do with the attribute copying (in the insert_text_field) in IE7. This particular error is coming from something like
$(element).attr('implementation', null)

I'm not sure why it throws this error for some attributes but not for most, but if we check the original element's version of that attribute and only copy it if it is set we can get around all these problems.

@jamieholst
Copy link
Owner

Thanks for the fix Tim. It's been merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants