-
Notifications
You must be signed in to change notification settings - Fork 589
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
IE10 not working #101
Comments
I haven't seen this, but it definitely could be an IE10 bug. Does this demo work for you? http://jsfiddle.net/bgrins/ctkY3/. If it does work, would you be able to modify it such that it is failing (or link to another page that shows it failing)? |
Also, does the form's |
I found the issue, it's weird! I had a maxlength attribute on my input field, if I remove this in IE10 it works. WTF?! Here's the updated JSFIDDLE, try in IE10: |
Very odd! I'm guessing IE10 is the only browser that is enforcing that on a change event or something (maybe throwing an error when trying to set the value or something). I'd say let's just go ahead and add a note inside of the docs for this. |
@davequested curious, does it break if the maxlength is bigger (like 10), or is it the mere presence of the attribute that causes breakage? |
IE9 works perfectly. But for some reason IE10 doesn't. A basic HTML form with spectrum works fine, but in our app it doesn't. From what I can tell it's something to do with the jquery change() event. Spectrum renders fine, but when you change the colour, the form is 'broken', we can't submit. The form does have submit events and we do detect if a form field has been made 'dirty'.
If we place this in, to force IE9, it works fine:
So, does anyone know/experienced any IE10 issues which might be causing this? Is it an IE10 bug?
Thanks in advance.
The text was updated successfully, but these errors were encountered: