- 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