Hyperlinks return to home page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some hyperlinks to other websites in my home page that after they
execute it and the user "closes" that site it needs to return to my original
home page, not the browser. Any idea what code to use???
 
Once the user has left your site, you have no control over that user's actions. The best option is
to always open external links in a new window, that way you site always stays open in the
background.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Please allow me and if I also need help you'll not hesitate to help me -
Copy & Paste to HTML tab/Mode; replace with your required hyperlinks:

<body>
<a
onclick="window.open('http://www2.creo.com/products/digital_photography/gallery/gallery
..html','_blank','top=75, left=75,
height=606,width=835,status=yes,toolbar=no,menubar=no,location=no')" href="#"><font
color="#000000" face="Arial" size="2">Leaf User Gallery</font></a>
</body>


I have some hyperlinks to other websites in my home page that after they
execute it and the user "closes" that site it needs to return to my original
home page, not the browser. Any idea what code to use???
 
It may not be clear because the hyperlink is underlined

The second parameter of window.open is '_blank'
 
Back
Top