Page 1 of 1

Help with links and frames

Posted: Mon Mar 24, 2003 11:43 am
by nigma
Hey

I have a page that has like three frames. A title frame, navigation frame, and main frame. Lets say I have a link inside the frame main and when clicked I don't want that site to be pulled up in the main frame, I want it to just go to that site as if there were never any frames. I know I can use window.open but I would also like to know how to do it this way.

Thanks for all help and advice provided.

HI

Posted: Mon Mar 24, 2003 3:26 pm
by phpfreak
kris use: target="_blank" in your a href tag for example:

<a href="http://www.cnn.com" target="_blank">CNN</a>


This will open another window and display the cnn.com in another window

Hope it helped
Kris

Posted: Mon Mar 24, 2003 3:36 pm
by nigma
Thank you so much. I really apreciate you helping me out.