Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wanna go to another page by clicking submit.(can I do without a form?)

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0

function submit1_onclick() {

(what is the code that I should write here to go to another page when click submit?)

}

Many thanks [sig][/sig]
 
<script language=&quot;javascript&quot;>
<!--
function submit1_onclick() {
location.href=&quot;path_to_location.html&quot;;
}
//-->
</script>

...

<form>
<input type=&quot;button&quot; value=&quot;Submit&quot; onClick=&quot;submit1_onclick();&quot;>
</form>

...

Is this what you're trying to do? [sig]<p>Russ<br><a href=mailto:bobbitts@hotmail.com>bobbitts@hotmail.com</a><br><a href= is in</a><br>[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top