HTML?

Open discussion about any topic, as long as you abide by the rules of course!
Post Reply
CaseDogg
Posts: 3481
Joined: Sat Mar 01, 2003 8:00 am

HTML?

Post 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.
cK-r1r
Posts: 76
Joined: Wed Mar 02, 2005 3:18 am

Post by cK-r1r »

target=_blank

i think... i haven't done html in a while
User avatar
PhoeniX
Posts: 4067
Joined: Fri Aug 04, 2000 7:00 am

Post by PhoeniX »

Code: Select all

<a href="http://www.google.com" target="_blank">Google</a>
The HavoX
Posts: 1207
Joined: Sun Jan 23, 2005 4:31 pm

Post 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.
CaseDogg
Posts: 3481
Joined: Sat Mar 01, 2003 8:00 am

Post by CaseDogg »

thanks homies. :icon14:
Bdw3
Posts: 3348
Joined: Sun Mar 12, 2000 8:00 am

Post 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. :o!

:)
Last edited by Bdw3 on Wed Mar 30, 2005 3:35 am, edited 1 time in total.
The HavoX
Posts: 1207
Joined: Sun Jan 23, 2005 4:31 pm

Post by The HavoX »

:smirk:
Post Reply