View Single Post
Old Jun 27th, 2005, 6:26 PM   #14
Cerulean
Professional Programmer
 
Cerulean's Avatar
 
Join Date: Apr 2005
Location: London, England
Posts: 459
Rep Power: 4 Cerulean is on a distinguished road
Quote:
Originally Posted by navnav
This could be done in just html

HTML:
<form>
<input type="button" value="Click here" onClick="parent.location='http://www.programmingforums.org'">
</form>
The pure HTML version you were looking for is
<form action="http://www.programmingforums.org"><input type="submit" value="Click here" /></form>
Cerulean is offline   Reply With Quote