0
votes
6answers
482 views
Simple jQuery function works in every browser but Firefox. What am I missing?
$(document).ready(function() {
$("span.link").mouseover(function(e){
$(this.children).css("display","inline");
});
});
I'm not a javascript expert, b …
0
votes
Simple jQuery function works in every browser but Firefox. What am I missing?
Outstanding. That worked. Thank you so much,
Jason
p.s., I guess I should use Firefox as my browser when developing, if Safari is more forgiving...
…
