Paul Bakaus schrieb:
> Hi there,
> well you have the function hover() and you can use it like this:
> 
> $("#link").hover(function() {
> //Will be executed when you mouse over
> //Set a timer that will wait for 2 secs
> window.setTimeout (function() {
> $("#navigation").show(); //Show navi
> ), 2000);
> },
> function() {
> //Will be executed when you move out again
> $("#navigation").hide(); //Hide navi
> });
> 
> Hope this helps!

There's also the incredible pause plugin. With that plugin I think you 
could write (not tested):

$("#link").hover(function() {
//Will be executed when you mouse over
//Set a timer that will wait for 2 secs
$("#navigation").pause(2000, 'fx').show(); //Show navi
},
function() {
//Will be executed when you move out again
$("#navigation").hide().unpause(); //Hide navi
});

-- Klaus

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to