0
votes
6answers
481 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 …
2
votes
3answers
262 views
How to trap “open in a new tab” clicks in jquery.click
Good morning -
I have a jquery script that attaches a click event to every link, running an action when the link is clicked. This has been working great, but I just got some betatester fee …
3
votes
2answers
106 views
JQuery click function not firing intermittently
Wow, this one has me tearing my hair out.
I'm tracking links in JQuery.
$(".hdr a[id]").mousedown(function(e){
var h = this;
var url = "/g/click/" + this.id;
$. …
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...
…
