Click to See Complete Forum and Search --> : Newbie needs help with button


someguy23
07-03-2003, 05:40 PM
Hello all... I'm useing dreamweaverMX and i'm having troblem make a newbie button This is what I have

input type="button" onClick="http://www.wakeosoft.com/intro.html" value="Enter Window Mode"

Now my full window button works tho and its html is:
<input type="button" onClick="fullwin('http://www.wakeosoft.com/intro.html')" value="Enter Full Screen Mode">

So whats wrong with the non full screen button?

David Harrison
07-04-2003, 04:02 AM
use this:
onclick="goplace()"

and in the head of your document have:

<script type="text/javascript"><!--

function goplace(){
location.href="http://www.wakeosoft.com/intro.html";}

//--></script>