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>