I have a list item with an onclick event. It runs in Chrome and Internet Explorer, but not Firefox. Any suggestions?
onclick
This works fine for me in Firefox.
Check this:
JavaScript is enabled in your browser.
Try adding a return false; statement in your tag.
return false;
Or a function like this:
function test() { //your code here return false; }
Link
or this