I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...
Well, .hover() binds two handlers for the events mouseenter and mouseleave, so it is a more convenient way and also easier to understand the purpose.
ReplyDeletemouseenter differs from mouseover so far as mouseenter is not fired if the cursor is over/enters a child element of the element the handler is bound to.
It is only fired once, when the cursors enters the element. mouseover is always fired, even if the cursor is over a child element.
The best way to see the difference is to have a look at the example of mouseleave().
Furthermore, mouseover and mouseout are real JavaScript events whereas mouseenter and mouseleave are events provided by jQuery (afaik).
In the end, it depends on what you want to achieve. There is no right or wrong and all these methods have their purpose. Unless you show some code, there is not much more to say.
If you mean :hover in CSS and you can achieve the desired effect with it, go for it. If there is a non-JS solution for a certain problem, always choose this one.
hover just saves you from having to do both a mouseenter and a mouseleave by doing both in one function.
ReplyDeletei prefer use css hover, because seems that I write less code to do the same.
ReplyDeleteThey're the same, except hover handles both mouseenter and mouseleave
ReplyDeleteSee: http://api.jquery.com/hover/
So you can use it like this
$('selector').hover(function () {
// Do stuff on mouse enter
}, function () {
// Do other stuff on mouse leave
}
)
Since you are learning, here is another equivalent to using hover:
ReplyDelete$('selector').bind('mouseenter mouseleave', function(){
if (event.type == "mouseenter") {
// MouseEnter code
} else {
// MouseLeave code
}
})