View Full Version : Pop-up link


Fool of a Took
05-15-2003, 06:17 AM
<input type="button" value="Affiliates" style="font-family:tahoma" style="background:#cc00cc" ONCLICK="window.open('affiliates.html', 'Sample', 'toolbar=no,location=no,directories=no,status=no,m enubar=no,scrollbars=no,resizable=no,copyhistory=y es,width=500,height=500')">

Code for a pop-up.

I need to know how to make it a plain 'ol text link to click on, instead of a button.

J E P P O
05-15-2003, 06:45 AM
there is othr more, by-the-book ways, but this is easier...

<a href="whatever.com" target='_blank'>WWW</a>

Cheers

designhazard
05-15-2003, 08:22 AM
you can also try this:
<a href="javascript:void(0)" onclick="window.open('WINDOW URL','WINDOW'S NAME','toolbar=no,location=no,directories=no,statu s=no,menubar=no,scrollbars=no,resizable=no,copyhis tory=yes,width=500,height=500')">TEXT</a>

The text in CAPITALIZED text should be replaced