I have code which is trivial but only works in IE not Firefox.
$(document).ready(function(){
$(\'li#first\').click();
});
I have also t
try this html
click here
js
$(document).ready(function(){
$("#link").click(function(){
window.location.href = $(this).attr('href');
});
});
also if this is somethng you don't want to do theb also try something like this:
$(document).ready(function(){
$("#link")[0].click();
});