Can I call jQuery’s click() to follow an link if I haven’t bound an event handler to it with bind or click already?

Another option is of course to just use vanilla JavaScript:

document.getElementById("a_link").click()

Leave a Comment