|
Subject:
|
Popup window from Javascript
|
|
Posted By:
|
arnabghosh
|
Post Date:
|
2/20/2006 1:08:36 AM
|
Hi Everyone, I have a link from which a popup window opens with a javscript function. I can minimize the popup window on to the taskbar. How to maximize the popup window from the taskbar using javascript from the link page.
|
|
Reply By:
|
crmpicco
|
Reply Date:
|
2/20/2006 10:52:42 AM
|
<script language="JavaScript">
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);
</script>
This should help you out...
www.crmpicco.co.uk
|
|
Reply By:
|
arnabghosh
|
Reply Date:
|
2/28/2006 11:40:08 PM
|
Suppose there are 2 or more windows minimized simultaneously, then how to find which window to maximize ? Is there a syntax to find the particular window name?
|
|
Reply By:
|
vinod_yadav1919
|
Reply Date:
|
3/1/2006 12:09:27 AM
|
Hii arnabghosh!! In this case you need to keep reference to opened window say win1,win2.
then use crmpicco code like win1.resizeTo(screen.width,screen.height)
win2.resizeTo(screen.width,screen.height)
Hope this will help you
Cheers :)
vinod
|