I recently created a advanced form with elements that use jquery’s $().hide & $().show functions. It’s working great in safari and ff, but for some reason in ie7, the $().hide action in jquery is not working properly. Any suggestions?
I recently created a advanced form with elements that use jquery’s $().hide & $().show
Share
Your jQuery specifications are breaking in IE because IE does not allow trailing commas in object/array literals (for which I loathe it more than I can possibly express, as if there needed to be more reasons). This:
needs to be this:
If you’re going to be debugging JS in IE, you need to turn off
Tools -> Internet Options : Advanced : Disable script debugging (Internet Explorer).