making hyperlinks open urls in new browser windows

R

Ronx

Select the hyperlink, right click and choose Hyperlink Properties.
In hyperlink properties set Target Frame to _blank (New Page)

In HTML/Code view this will be like
<a href="page.htm" target="_blank">link text</a>
 
R

Ravi Anguluri

If you are familiar HTML and javascript code you can use like below

<a href="pr01.htm" onclick="javascript:
window.open('pr01.htm','windowname','toolbar=yes,status=yes,menubar=yes,scro
llbars=yes,resizable=yes')">press release</a>

Hope this Information helps.
Regards
Ravi
MSFT

This posting is provided "as is" with no warranties and confers no rights
--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top