Answers for "open a page on button click html"

20

href on a button

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

how to open new html page on button click

<!DOCTYPE html>
<html>
<head>
<script>
function openLink() {
  window.open("https://www.w3schools.com");
}
</script>
</head>
<body>

<form>
  <input type="button" value="Open Window" onclick="openWin()">
</form>

</body>
</html>
Posted by: Guest on July-25-2020

Code answers related to "open a page on button click html"

Browse Popular Code Answers by Language