Answers for "how to go to another html page on clicking a button"

20

href on a button

<button onclick="window.location.href='/page2'">Continue</button>
Posted by: Guest on June-08-2020
0

button with href

onClick={() => {window.location.href="https://www.golfballs.com/"}}
Posted by: Guest on August-05-2020
0

how to make clicking button send you down to a certain section of page html

<input type="button" onClick="document.getElementById('middle').scrollIntoView();" />
Posted by: Guest on June-03-2021

Code answers related to "how to go to another html page on clicking a button"

Browse Popular Code Answers by Language