Browser Compatibility Problems - OnClick not functioning in FireFox but okay in IE
Just to update you guys, assuming you have the code below:
< ... onClick="AddNumbers(1);" ... />
Most of the time this is how you do it? It works fine in IE. Who cares right? When you try on FireFox, it doesn't work.
So make sure you always return false like the code below in order for all browsers to work.
< ... onClick="AddNumbers(1); return false;" .... />
Have fun.