I have created a slideshow page and want to allow the visitor to use an "exit" button in a form to go back to another page on my website.
I wasn't able to use a hyperlink directly from the button which seemed the obvious way to go, but thought I could do something like the following.
Sorry for posting such a trivial item, but any help would be appreciated.
I wasn't able to use a hyperlink directly from the button which seemed the obvious way to go, but thought I could do something like the following.
Sorry for posting such a trivial item, but any help would be appreciated.
Code:
<html>
<head>
<title></title>
<SCRIPT type="text/javascript">
function testlink(){
"[URL unfurl="true"]http://www.yahoo.com"[/URL]
}
</SCRIPT>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="273">
<tr>
<td width="50%" height="253"> <INPUT TYPE="button" VALUE="Exit" onClick="testlink()">td>
</tr>
</table>
</body>
</html>