I am trying to write some jquery that will allow me to click two links at the same time. I want to click #campaign and #link32 at the same time. So far I have this code…
$('#campaign').bind('click', function() {
#link32);
});
It doesn’t seem to be working. Im sure I am just messing up something simple. Can anyone help.
Thanks,
Nate
you can use trigger() method:>
http://api.jquery.com/trigger/