Does JQueries Live Work In IE8?
I am making use of the JQuery fancy box - in this pop up box I have a form with a few select fields and upon changing these slect fields a value in a span element should change. I
Solution 1:
live
does not support the change event. From the manual:
Possible event values: click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup
Currently not supported: blur, focus, mouseenter, mouseleave, change, submit
Solution 2:
jQuery live does work in IE8, but the live handlers don't support the change event.
Possible event values: click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup
Currently not supported: blur, focus, mouseenter, mouseleave, change, submit
Solution 3:
Live also not support paste event Handler hence use bind
Post a Comment for "Does JQueries Live Work In IE8?"