Hello Subhendu,
window.open('http://someurl.com', 'nameOfTheWindow', features);
nameOfTheWindow is the same as target, if a window with that name is
already opened then url will be loaded in that window, if not - it
will open a new one and gives it a name.
There will be one problem with that though. If you load url to an
existing window it will not get focus, so you will have to give it
focus yourself, either by window.focus() on onLoad event, or calling
focus() method right after window.open()
<a href="#" onClick="details = open('someUrl', 'detailsWindow', '');
details.focus(); return false;">details</a>
(Not sure about that one)
Sunday, August 18, 2002, 7:03:02 PM, you wrote:
SM> I have a list of many products and to see the detail of each product,
SM> visitor has to click the details link and then a small window opens up with
SM> detail description about the product.
SM> I want the same small window once opened should dispaly the detials of all
SM> other products. So when some one clicks the details link of another product
SM> then the same window should dispaly the second product detail. No new window
SM> should open each time detail link is clicked for different products.
--
Best regards,
German mailto:[EMAIL PROTECTED]
ICQ:48533867
MSN: [EMAIL PROTECTED]
AIM: CreepyRunneR
____ � The WDVL Discussion List from WDVL.COM � ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub
________________ http://www.wdvl.com _______________________
You are currently subscribed to wdvltalk as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]