T Tom Nov 4, 2003 #1 How can I insert a hyperlink to a webpage, so the link can open a "new window" when it is clicked? Thanks for the help.
How can I insert a hyperlink to a webpage, so the link can open a "new window" when it is clicked? Thanks for the help.
S Steve Easton Nov 4, 2003 #2 Set the target frame to New window when you create the link. Or, right click an existing link, select Hyperlink Properties, click Target Frame and then select New Window. When done you will see target="_blank" as part of your hyperlink.
Set the target frame to New window when you create the link. Or, right click an existing link, select Hyperlink Properties, click Target Frame and then select New Window. When done you will see target="_blank" as part of your hyperlink.
S Someone Nov 4, 2003 #3 -----Original Message----- How can I insert a hyperlink to a webpage, so the link can open a "new window" when it is clicked? Thanks for the help. . Click to expand...
-----Original Message----- How can I insert a hyperlink to a webpage, so the link can open a "new window" when it is clicked? Thanks for the help. . Click to expand...
T Thomas Nov 4, 2003 #4 You can use the target attribute of the link tag. To open a new window to yahoo when clicked: a href="http://www.yahoo.com" target="NewWindow" For more informaiton on this, check out this page: http://www.mcli.dist.maricopa.edu/tut/tut25.html
You can use the target attribute of the link tag. To open a new window to yahoo when clicked: a href="http://www.yahoo.com" target="NewWindow" For more informaiton on this, check out this page: http://www.mcli.dist.maricopa.edu/tut/tut25.html