I have been playing a bit with jQuery\'s onmouseover function. The code bellow does the following: when the user hovers the links, it triggers the titles(text) with a css(t
to trigger mouseover event in all elements inside a div you use sth like this :
$("selector").mouseover(function(){ $(this).find("*").each(function(){ $(this).trigger("mouseover"); }); });