Why does IE add a jQuery attribute for server-side element with mouseover handler?
问题 This isn't a crucial piece of knowledge for me, but I would still like to know what exactly is happening here. This is a .NET 3.5 Web Forms application. One of the pages has 3 server-side inputs with type 'submit'. Each one of these inputs has the following JavaScript handlers assigned to them with jQuery: $('.button').mouseover(function() { $(this).addClass('hoverEffect'); }); $('.button').mouseout(function() { $(this).removeClass('hoverEffect'); }); When I run the following script (yes,