View Full Version : pop ups


lilRuBbErDuCkS
05-28-2003, 10:00 PM
Hi.
I'm just starting to learn more about pop ups and I went on the site but there wasn't anything in common with my question. So, is there a way to make a pop up w/o having a button and just a link? I used

<input type="button" ....

and tried to change "button" to "link" to see what would happen but that didn't work. Is there a way w/o having to make whole new pages?? thanks

amicus
05-28-2003, 10:06 PM
i'm assuming you want to open a new window when you click on a link. just use the 'target' attribute :)

<a href="somepage.html" target="_blank">text</a>

lilRuBbErDuCkS
05-28-2003, 10:18 PM
That would probably work, thanks!