Mega Code Archive

 
Categories / JavaScript DHTML / Form Control
 

Button Redirect

<html><head><title>Button Redirect</title> <script language="javascript"> <!-- function NewPage() {   document.location.href= "http://www.rntsoft.com" } //--> </script> <body> <input type="button" value="Link" onClick="NewPage()"> </body></html>