Answers for "button onclick html redirect"

-1

onclick redirect to url

<td onclick="javascript:window.location.href-'http://www.stackoverflow.com'" style="cursor:hand">Stackoverflow</td>
Posted by: Guest on September-01-2021
9

html button redirect

You can make <button> tag to do action like this:

<a href="http://www.google.com/">
   <button>Visit Google</button>
</a>
or:

<a href="http://www.google.com/">
   <input type="button" value="Visit Google" />
</a>
It's simple and no javascript required!
Posted by: Guest on June-12-2021

Code answers related to "button onclick html redirect"

Code answers related to "Javascript"

Browse Popular Code Answers by Language