I have this bit of jQuery toggling a paragraph after an H3 link. It works in IE and Chrome on PC and Safari and Chrome on Mac. On Firefox on both platforms, clicking the link does nothing at all?

<script type="text/javascript">
$(document).ready(function(){
$("#rightcolumn .article .collapse").hide();
$("#rightcolumn h3 a").click(function(){
if(event.preventDefault){
event.preventDefault();
}else{
event.returnValue = false; 
};
$(this).parent().next().toggle(400);
});
});
</script> 

If I disable the event.preventDefault(); section it works in Firefox, but of course then I get the page jumping to the top which I don't want. What can I do to get it working in Firefox?

link|improve this question

0% accept rate
1  
try event.stopPropagation() as well – Thomas Shields May 3 '11 at 15:51
@Thomas: Irrelevant whether it propagates or not. The problem is that he's not declaring the function argument, and so on non-IE browsers, calling anything on event throws an exception as event is not defined. See Nicky's answer. – T.J. Crowder May 3 '11 at 15:54
@T.J yeah, you're right. i'd forgotten what stopProgagation actually meant as it had helped me with some obscure issues. thanks for the reminder. – Thomas Shields May 3 '11 at 15:57
feedback

1 Answer

You are missing the event declaration from your function. Also as a convention I see most examples using evt as the variable name.

$("#rightcolumn h3 a").click(function(evt)
{
   evt.preventDefault();
   $(this).parent().next().toggle(400);
}

Comment from T.J. Crowder as to including the evt in function()

You need to declare the parameter to the click handler (event is not a global except on IE and browsers that throw a bone to IE-specific websites.) And note that you don't need (or want) the test for preventDefault. jQuery supplies it on browsers that don't provide it natively

More explanation on jQuery events

link|improve this answer
With this kind of answer, I recommend telling them what you changed, as well as the example. @Andy: You need to declare the parameter to the click handler (event is not a global except on IE and browsers that throw a bone to IE-specific websites.) And note that you don't need (or want) the test for preventDefault. jQuery supplies it on browsers that don't provide it natively. – T.J. Crowder May 3 '11 at 15:52
@T.J. Crowder good point I was just about to rush out the door here. I've updated my answer – Nicky Waites May 3 '11 at 15:55
Thanks Nicky! Works perfectly. Thanks for your prompt reply. :) – Andy Nightingale May 3 '11 at 16:25
No problem. I was in a bit of a rush earlier so I'll update my answer with T.J.'s explanation of why that was required. Also if you're happy with the solution it is good etiquette to mark it as the accepted answer – Nicky Waites May 3 '11 at 17:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.