I\'m trying to simulate a click on an anchor tag using jQuery. I\'ve been digging around StackOverflow and Google for a while and haven\'t found anything that works on all o
I use this approach. Seems to work okay.
$(function() { fireClick($("a")); }); function fireClick (elem) { window.location = $(elem).attr('href'); }