Forum Moderators: open

Message Too Old, No Replies

Need some help with a hyperlink

         

eaglepi

3:40 am on Nov 15, 2005 (gmt 0)

10+ Year Member



If I have this link
<A HREF="http://www.mydomain.com/condition.htm">Condition Guide</A>

what needs to be added so that when someone clicks on the link it opens a new page so when that page is closed they are back to my original page.

Thanks in advance

coho75

3:42 am on Nov 15, 2005 (gmt 0)

10+ Year Member



<A HREF="http://www.mydomain.com/condition.htm" target="_blank">Condition Guide</A>

Lead Gen Guru

3:27 pm on Nov 18, 2005 (gmt 0)



I would change it up to make it look more professional. Why not use a simple pop up script?

This way you have no toolbars, no scroll bars. Look more professional.

<script language="JavaScript" type="text/javascript">
<!--
function makePopUp(whereTo, winWidth, winHeight)
{
remote = window.open("","remotewin","width="+winWidth+",height="+winHeight+",menubar=0,toolbar=no,scrollbars=no");
remote.location.href = whereTo;
remote.focus();
}
-->
</script>

Barb

8:14 am on Nov 20, 2005 (gmt 0)

10+ Year Member



Question...

I like that popup script mentioned above.

However, I have a site in which several pages have loads of links (not necessarily link exchange links). Do I have to erase all the "target=_blank" code in order to use the script? Or, can I leave in the code and the script can still work? I hope the latter - it would take a long while to erase those codes LOL.