View Full Version : input type="button" >_<


kikichan
09-11-2004, 01:15 AM
ok.. i have this code

<input type="button" Value="Updates" ONCLICK="window.open('http://www.geocities.com/freak2_ukyu/newness.html', 'Sample', 'toolbar=no,location=no,directories=no,status=no,m enubar=no,scrollbars=yes,resizable=no,copyhistory= yes,width=500,height=350')">

and its great that it opens up into a new screan and all but is there a different type of "input type" that i can put insted of "button"? i really dont want it to be a button... id prefer it to just be text...

kittycat
09-11-2004, 02:02 AM
Try this...
<a href="#" ONCLICK="window.open('http://www.geocities.com/freak2_ukyu/newness.html', 'Sample', 'toolbar=no,location=no,d irectories=no,status=no,m enubar=no,scrollbars=yes, resizable=no,copyhistory= yes,width=500,height=350' )">Updates</a>
Just a plain text link.

kikichan
09-11-2004, 02:20 AM
hehe...i forgot i could do that ^^; thanks for the help though