How can I use javascript to reload page and go to a specific div when a button is clicked?
function reloadAgreement() {
location.reload();
}
<li><a href="" onclick="reloadAgreement();">Return to Store Info</a></li>
How can I use javascript to reload page and go to a specific div when a button is clicked?
function reloadAgreement() {
location.reload();
}
<li><a href="" onclick="reloadAgreement();">Return to Store Info</a></li>
Share
Improve this question
edited Feb 26, 2014 at 6:23
Karthick Kumar
2,3591 gold badge19 silver badges30 bronze badges
asked Feb 26, 2014 at 6:19
msafimsafi
3771 gold badge5 silver badges21 bronze badges
1 Answer
Reset to default 8function gototab(reload)
{
window.location.hash = '#tab2';
window.location.reload(true);
}
Return to Store Info
from here Reload page with different anchor
edit:
To clarify, the section that says "#tab2" is the 'id' attribute of the div you want the page to go to when the link is clicked.