SitePoint Sponsor |
|
User Tag List
Results 1 to 6 of 6
-
Sep 25, 2002, 02:43 #1
- Join Date
- Sep 2002
- Posts
- 8
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
open an non-fullscreen popup from a fullscreen window
How to popup a new window from a fullscreen window, which is NOT fullscreen?? Tried it with: window.open("http://www.link.de","_blank","menubar=yes,toolbar=yes,resizable=yes"); this does not work ..
Thanks for any help!
-
Sep 25, 2002, 06:43 #2
- Join Date
- Jul 2002
- Location
- Dallas, TX
- Posts
- 2,900
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
don't use any features in conjunction with _blank
window.open("http://www.link.de","_blank","");
If it still comes up fullscreen, you will need to specify all the features that you want/don't want, including 'fullscreen=no'
-
Sep 25, 2002, 07:34 #3
- Join Date
- Sep 2002
- Posts
- 8
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
no this does not work either. i tried all these versions:
window.open("http://www.link.de/","_blank","menubar=yes,toolbar=yes,resizable=yes,fullscreen=no");
window.open("http://www.link.de/","_blank","fullscreen=no");
window.open("http://www.link.de/","");
when i leave out "_blank" the popup doesn`t open at all:
window.open("http://www.link.de/","fullscreen=no");
I´m
-
Sep 25, 2002, 07:39 #4
- Join Date
- Mar 2002
- Location
- Ecosse
- Posts
- 398
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
<A HREF="" onClick="window.open('yourfilenamehere.htm', 'newWnd',
'width=300,height=210,menubar=no,location=no,scrollbars=no');
return false;" "onmouseout="window.status=' '; return true" onmouseover="window.status='Your Pop Up Window'; return true"><b><font color="#00FFFF" size="3">Click here to open the window</font></b></A>
Try this for your pop up. Mess around with the figures to get the position you need.
Rab"If something is too hard,give it up. The moral my boy is too never try anything"
"Just because I don't care doesn't mean I don't understand"
-
Sep 25, 2002, 07:59 #5
- Join Date
- Apr 2002
- Posts
- 26
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
you can also use the left=x and top=x to get the window in the right position on the screen
-
Sep 26, 2002, 01:50 #6
- Join Date
- Sep 2002
- Posts
- 8
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Thank you ..
that works!
Bookmarks