I have the following line of code in a link on my webpage:
<a href="javascript:$('#comment_form').toggle('normal')" title="Comment on this post">
This produces a link that should pop open a hidden form. It works on Safari, but in Firefox, I just get an almost-empty page with nothing but the following text:
[object Object]
I'm sure this has something to do with the value returned by the JQuery function, but I'm not sure how to fix the call to the JavaScript function so it works in Firefox, too.