javascript onclick to another page code example

Example 1: js onclick redirect

<button onclick="location.href='www.yoursite.com'">Click Me</button>

Example 2: how to open a new html page on button click in javascript

<button id="myButton" class="float-left submit-button" >Home</button>

<script type="text/javascript">
    document.getElementById("myButton").onclick = function () {
        location.href = "www.yoursite.com";
    };
</script>

Example 3: javascript onclick to another page div

<div onclick="window.location.href = 'http://example.com';">Click this div to get redirected.</div>

Tags:

Html Example