+ 1
Pls I need a code that jumps to a HTML page using JavaScript
Hello
5 Answers
+ 4
You can create a button or an event listener and use
window.location = âpageNameHere.htmlâ;
Hope that helps
+ 2
<html>
<head>
<script>
function jumpToPage() {
 window.location.href = "https://www.example.com";
}
</script>
</head>
<body>
<button onclick="jumpToPage()">Jump to Page</button>
</body>
</html>
+ 1
It helps but I need the source codeplđđđđđđ
+ 1
The source code
+ 1
Thatâs itđ