Board index » Web Programming » Hyperlink - opens a new browser window

Hyperlink - opens a new browser window

Web Programming292
How do I create a hyperlink with the "intelligence" to open the linked

URL in a new browser window rather than opening it in the current

browser window?



Thanks.



Thomas

--



Three stages of truth for scientists:

(1) It's not true.

(2) If it is true, it's not very important.

(3) We knew it all along.

Leo Szilard, (1898-1964, Key figure in the Manhattan Project)


-
 

Re:Hyperlink - opens a new browser window

target=_blank



--

Cheers,

Trevor L., WIP (Web Interested Person)

Website: tandcl.homemail.com.au">tandcl.homemail.com.au



Thomas wrote:

Quote
How do I create a hyperlink with the "intelligence" to open the linked

URL in a new browser window rather than opening it in the current

browser window?



Thanks.



Thomas

--



Three stages of truth for scientists:

(1) It's not true.

(2) If it is true, it's not very important.

(3) We knew it all along.

Leo Szilard, (1898-1964, Key figure in the Manhattan Project)





-

Re:Hyperlink - opens a new browser window

Jimcoaddins.com - use the "Spawn" addin.



"Thomas" <nospam@nospam.com>wrote in message

Quote
How do I create a hyperlink with the "intelligence" to open the linked URL

in a new browser window rather than opening it in the current browser

window?



Thanks.



Thomas

--



Three stages of truth for scientists:

(1) It's not true.

(2) If it is true, it's not very important.

(3) We knew it all along.

Leo Szilard, (1898-1964, Key figure in the Manhattan Project)





-

Re:Hyperlink - opens a new browser window

Hi Thomas,



You can also do so in FrontPage UI. Right click the hyperlink and click "Hyperlink Properties". Click "Target Frame" and choose "New

Window" in the list.



I hope the information helps.



Regards,

Jason Lu

Microsoft Online Partner Support



When responding to posts, please "Reply to Group" via your newsreader so that others may learn and benefit from your issue.

=====================================================



Business-Critical Phone Support (BCPS) provides you with technical phone support at no charge during critical LAN outages or "business

down" situations. This benefit is available 24 hours a day, 7 days a week to all Microsoft technology partners in the United States and

Canada.



This and other support options are available here:



BCPS: https://partner.microsoft.com/US/technicalsupport/supportoverview/40010469



Others: https://partner.microsoft.com/US/technicalsupport/supportoverview/



If you are outside the United States, please visit our International Support page: http://support.microsoft.com/default.aspx?scid" rel="nofollow" target="_blank">support.microsoft.com/default.aspx=%

2finternational.aspx.



=====================================================



This posting is provided "AS IS" with no warranties, and confers no rights.









-

Re:Hyperlink - opens a new browser window

Type the link like this:



<a href="#" onclick="window.open('Type address here')">



All of the elements in that link are important.



So remember to replace the 'type address here' with your address.



"Thomas" wrote:



Quote
How do I create a hyperlink with the "intelligence" to open the linked

URL in a new browser window rather than opening it in the current

browser window?



Thanks.



Thomas

--



Three stages of truth for scientists:

(1) It's not true.

(2) If it is true, it's not very important.

(3) We knew it all along.

Leo Szilard, (1898-1964, Key figure in the Manhattan Project)



-