Tagged Questions
4
votes
2answers
154 views
Can mouseenter be made to not fire in IE on DOMready?
jQuery emulates IE's mouseenter event on non-IE browsers. In IE, however, mouseenter is being triggered when the page loads (maybe due to jQuery's use of doScroll in the $.ready implementation), even ...
2
votes
2answers
859 views
Triggering domready by force in jQuery?
Since placing javascript DOM methods in the bottom of the html page (after <body>) is a lot faster than using the jQuery 'ready' event, shouldnt we be forcing it by doing:
...