prevent default hover
- by meo
I try to prevent the Browser from using the :hover effect of the CSS.
$("ul#mainFilter a").hover(
function(o){ o.preventDefault(); ...do my stuff... },
function(o){ o.preventDefault(); ...do my stuff... });
I tired it with return false; to but it does not work.
Does anyone know how to do this?