|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
i want to have a pop-up screen that is activated on the closing of a window, but i want it to be one that has no toolbar, adress, etc, just a plain window with my HTML file inside...u know what i mean?
thanks in advance. ![]() |
|
#2
|
|||
|
|||
|
http://tech.irt.org/articles/js128/#3
Try putting those properties in the window.open() function i.e.: window.open("whateverpage.html","name of window", width="##", height="##", titlebar=no, fullscreen=yes....and so forth...) |
|
#3
|
|||
|
|||
|
i was hoping to gwet the script in HTML as that is what i am use to, i aint too good at the whole JS thing, do u know the script for it in HTML???
|
|
#4
|
|||
|
|||
|
If all you want is a simple popup thats not full screen necessarly but has no scroll bars you can use this code. In it you can specify the popups size and what options you want enabled.
-------------------------------------------- <html> <head> <title>Pop-up for Now.com</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="JavaScript"> <!-- function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } //--> </script> </head> <body bgcolor="#FFFFFF" onUnload="MM_openBrWindow('www.now.com','popup','width=600,height=400')"> </body> </html> ------------------------------------------ this will open when you go to a new webpage or when you close the webpage. If this isn't what your looking for let me know. ![]() |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > also, how do i get those cool windiws that have no toolbars? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|