Page 1 of 1
HTML?
Posted: Wed Mar 30, 2005 2:53 am
by CaseDogg
whats the code to have your link open in a new window? i added a link and the bitch keeps changeing my web page to that page instead of going to a new one.
Posted: Wed Mar 30, 2005 2:54 am
by cK-r1r
target=_blank
i think... i haven't done html in a while
Posted: Wed Mar 30, 2005 2:57 am
by PhoeniX
Code: Select all
<a href="http://www.google.com" target="_blank">Google</a>
Posted: Wed Mar 30, 2005 2:58 am
by The HavoX
target="_blank"
Opens the linked page in a new window.
target="_self"
Opens the linked page in the same window. This is the default for ordinary pages and doesn't need to be specified. It has a use when working with frames.
target="_parent"
Opens the linked page in the parent frame in a frames page.
target="_top"
Opens the linked page in a full (i.e. top level) window when used in frames pages. This one is useful for letting a linked page 'break out' of a frame.
Posted: Wed Mar 30, 2005 3:08 am
by CaseDogg
thanks homies. :icon14:
Posted: Wed Mar 30, 2005 3:34 am
by Bdw3
Google man :icon14:
The HavoX wrote:target="_blank"
Opens the linked page in a new window.
target="_self"
Opens the linked page in the same window. This is the default for ordinary pages and doesn't need to be specified. It has a use when working with frames.
target="_parent"
Opens the linked page in the parent frame in a frames page.
target="_top"
Opens the linked page in a full (i.e. top level) window when used in frames pages. This one is useful for letting a linked page 'break out' of a frame.
http://www.fontstuff.com/frontpage/fptut05.htm
So easy honushi can do it.

!

Posted: Wed Mar 30, 2005 4:28 am
by The HavoX