Skip to content Skip to sidebar Skip to footer

Strange Jquery Attribute Added On Checkbox In Ie8

I have a very strange bug whereby ie8 would inject the attribute below in the input checkbox html: jQuery17202259447732522888='19'

Solution 1:

This "expando" attribute is used by jQuery to keep track of the events bound to your checkbox element. If you can't check it, that's probably because you have an event handler function preventing it.

More here: jQuery attribute auto added to elements

Post a Comment for "Strange Jquery Attribute Added On Checkbox In Ie8"