Horje
how to redirect to another page when a login button is clicked Code Example
js onclick redirect
<button onclick="location.href='www.yoursite.com'">Click Me</button>
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>
how to redirect to another page when a login button is clicked
<button id="myButton" class="float-left submit-button" >Home</button>

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




Html

Related
insert links in ordened and unordered lists Code Example insert links in ordened and unordered lists Code Example
html style display none inline Code Example html style display none inline Code Example
htmlagility treeview Code Example htmlagility treeview Code Example
HTML5 Video tag not working Safari iPhone iPad video webpage supported Code Example HTML5 Video tag not working Safari iPhone iPad video webpage supported Code Example
how to add particle js in html Code Example how to add particle js in html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10