jQuery plugin : delayed mousover

Download

delayedMouseover( fn, delay (in ms) )

Demo :

Basic (hover me)
$("#example1 p").delayedMouseover(function(event){
	$(this).unbind(); //Remove the delayed mouseover
	$(this).css("color","#FF0000").append(" - Foo (1 second)");
});
With customed delay
$("#example2 p").delayedMouseover(function(event){
	$(this).unbind(); //Remove the delayed mouseover
	$(this).css("color","#1F920E").append(" - Foo Foo Foo (3 seconds)");
}, {delay: 3000});