i'm making a register form and i want it to open a link when i press the submit button, how would i do this please? :queasy:
Sumbit
If you're simply trying to just open a pop-up window with a URL give this code a try for your submit button:
<input type="submit" name="submit" value="Submit" onClick="javascript:window.open('http://www.google.com')">
for more on window.open give this link a try:
http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/open_0.asp
Hope that helps a bit!
Steve
Hi Adam
This is an HTML question:
<form method="POST" action="http://www.mylink.com/formprocessing.php">
<!-- bunch of form stuff -->
<input type="submit">
</form>
Norm
lol nvm i sorted it but thanks anyway