I am completely new to jquery and is it possible to make an anchor tag follow the href page and then produce a click event automatically on an element.(nextpageanchor)
for eg:
//Current page
<a href="nextpage.html" id="currentpageanchor">Click to go to nextpage</a> //on clicking manually v go to nextpg
//next page
<a href="#" id="nextpageanchor">I do some logic make me click programatically</a>
please help
On your current page you could add a parameter to your url like
And on your nextpage: you could look if the parameter is available and use
$('something').trigger('click');