I have code which is trivial but only works in IE not Firefox.
$(document).ready(function(){
$(\'li#first\').click();
});
I have also t
Firefox does support the .click() JQuery function. I had the same problem, until I specified the tag name in my selector. Essentially, I had something like this:
...
$("#vidLeftArrow").click(function () {
//Do something
});
Which didn't work. I had to change the javascript to this:
...
$("a#vidLeftArrow").click(function () {
//Do something
});