I want to highlight a dom object using jquery. I found out a way using effect from jquery ui:
$('#foo').hover(function(){$('#bar').effect("highlight");});
but this takes effect only when the mouse move in/out to #foo. I want the effect to sustain during when the mouse is over #foo, and get back to before when the mouse leaves. I tried, this:
$('#foo').mouseover(function(){$('#bar').effect("highlight");});
but still does not work. How can I make the effect sustain?
