Implement jQuery’s hover() Method in MooTools
jQuery offers a quick event shortcut method called hover that accepts two functions that represent mouseover and mouseout actions. Here's how to implement that for MooTools Elements.
The MooTools JavaScript
/* hover! */
Element.implement({
'hover': function(fn1,fn2) {
return this.addEvents({
'mouseenter': function(e) {
fn1.attempt(e,this);
},
'mouseleave': function(e) {
fn2.attempt(e,this);
}
})
}
});
We implement hover() which accepts to functions; one will be called on mouseenter and the other on the mouseleave event. Each function is passed the corresponding event.
The Usage
/* fade in and out on hover event */
$('hover-me').hover(function(e) {
this.fade('out');
}, function(e) {
this.fade('in');
});
This simple example usage makes use of element fading.
One event that's always been lacking within the document is a signal for when the user is looking at a given tab, or another tab. When does the user switch off our site to look at something else? When do they come back?
As much as developers now loathe Flash, we're still playing a bit of catch up to natively duplicate the animation capabilities that Adobe's old technology provided us. Of course we have canvas, an awesome technology, one which I highlighted 9 mind-blowing demos. Another technology available...
Mozilla recently formally announced Firefox OS and its partners at Mobile World Congress and I couldn't be more excited. Firefox OS is going to change the lives of people in developing countries, hopefully making a name for itself in the US as well. The...
Another reason that I love Twitter so much is that I'm able to check out what fellow developers think is interesting. Chris Coyier posted about a flashlight effect he found built with jQuery. While I agree with Chris that it's a little corny, it...
Sorry Bro, but this is completely useless. There is no need for a “hover”-method with a sloppy API like jQuery has (there is clearly no point in “argument one is hover event and argument two is the mouseout event”).
After all, the mootools approach isn’t really significantly more to write but it gives you more flexibility and more meaningful code:
Also, by doing it the “mootoolsian”-way you can remove the events if you want or need to by doing
el.removeEvent('mouseenter', fn)
.@Chris
I like this, but after reading your reply I do agree with you. The reason why I like it is that it shows how flexible MooTools is — There is [almost] nothing that MooTools cannot do that other libs can. The thing that makes hover() less MooTools and more jQuery is the autobinding.
Great post though.
MooTools automatically binds every function to the element unless the function is bound already.
Consider this example:
The first example will log the element and the second one will be bound to “someOtherElement”. We have it all!
I see your point guys — I created this because it simply gives the dev a shorter way to accomplish something. It may also help jQuery users who are moving to Moo by making things a little bit more simple.
Chris, that would be true if David’s code was written as it were in your first post, but the function with the action is enclosed inside of the anonymous (already bound) function.
This looks kinda familiar :) http://code.google.com/p/mooj/source/browse/trunk/mooj.js#83
Damn Lim, I had forgotten about Mooj. You need to do a series of articles on that thing.
Chris, you can do the same in jQuery also, you don’t have to use
hover()
.As an exercise in demonstrating how easy it is to add your own syntax to MooTools, I think this post is totally fine and appropriate. None of us would ever do this for all the reasons pointed out in the comments above.
My only comment is that it should return
this
for chaining:So I have to throw in my $0.02US —
I implement this for Dojo based on the same “wow, why do people get so excited about an API that already exists” … but I changed the
.hover()
API some:allowing you to do one function for both states:
Though I put it in my “mini lib” plugd:
http://code.google.com/p/plugd/
I even submitted a patch to jquery because I think the single function use makes sense and is even more ‘rockstar’ than two inline functions:
http://dev.jquery.com/ticket/3498
Regards,
Peter Higgins
It has potential! Got some idea, will share when finnished.
Hello. I’am looking for this jQuery-Function in Mootools. Any Idea?
@joe This should do what you ask:
@Constantin:
Which can be backported to jQuery
It’s not because jQuery has shortcuts that you must use them.