$(document).ready(function() {
$("span.link").mouseover(function(e){
$(this.children).css("display","inline");
});
});
I'm not a javascript expert, but I've cobbled together a few functions using jQuery.
In this case, the stylesheet hides some controls. When the user mouses over, this function exposes those controls.
This works on every browser but Firefox (on the Mac and Windows). Am I missing something obvious?
Thanks for your help,
Jason