Important alert: (current site time 7/15/2013 1:30:58 PM EDT)
 

VB icon

Change windows focus using link (keeping open)

Email
Submitted on: 6/5/1998
By: Found on the Web 
Level: Not Given
User Rating: By 2 Users
Compatibility: JavaScript
Views: 15521
 
     How can I change the focus from one window to the other window (and vice versa) by clicking on an link or image, but keep both windows open? Found at: http://www.irt.org
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
				
'**************************************
' Name: Change windows focus using link (keeping open)
' Description:How can I change the focus from one window to the other window (and vice versa) by clicking on an link or image, but keep both windows open?
 Found at: http://www.irt.org
' By: Found on the Web
'**************************************

<HEAD>
<SCRIPT LANGUAGE="JavaScript"><!--
myWindow=window.open('','windowName','add you list of properties in here');
self.focus();
myWindow.href = 'apage.html';
if (!myWindow.opener) myWindow.opener = self;
//--></SCRIPT>
</HEAD>
In the main window: 
<A HREF="javascript:myWindow.focus()">show popup window</A>
 
In the popup window: 
<A HREF="javascript:opener.focus()">show main window</A>
 


Other 219 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Not Given category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments


 There are no comments on this submission.
 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.