View Single Post
  #9 (permalink)  
Old Sep 19th, 2007, 12:41
jayaramgussy jayaramgussy is offline
Junior Member
Join Date: Jun 2007
Location: India
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Target Window Name

HTML: Select all
<HTML>
<body>
<A HREF="http://www.google.com" TARGET="Jai"
onClick="Window.open('http://www.google.com', 'Jai', 'status'); return false">Google</A><br/>
<A HREF="http://www.inbox.com" TARGET="Jai"
onClick="window.open('http://www.inbox.com', 'Jai', 'status'); return false">
Inbox</A><br/>
<A HREF="http://www.hotmail.com" TARGET="Jai"
onClick="window.open('http://www.hotmail.com', 'Jai', 'status'); return false">
Hotmail</A><br/>
<A HREF="http://www.yahoo.com" TARGET="Jai"
onClick="window.open('http://www.yahoo.com', 'Jai', 'status'); return false">
Yahoo</A><br/>
<br/>
</body>
</html>
This is the code. Its working fine. But the problem is, first time if click on any one link in this html will open a new window, then if u minished that opened window and again you click on the other link it will open the existing Window (target="Jai"). But i didn't get any indication that the Jai Screen had changed. I need to resurface that window (I dont need the alert message). that window just refresh and show to the user.
Please help me

Last edited by karinne; Sep 19th, 2007 at 12:52. Reason: Please use the vBcode [ html ] when inserting HTML code in your post.
Reply With Quote