|
| ||||||||||
| Tags: html, javascript, no toolbars, popup window |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| To open a popup window with no toolbar.
I am a newbie with html & javascript so please consider me. I know its not right to tweak with the user browser, but I want to open a window in a popup but with no toolbar. Is this possible for us to have a popup window without the help of javascript? If yes can you please give me an idea to do the same? Thanks. |
|
#2
| ||||
| ||||
| Re: To open a popup window with no toolbar.
Actually its nothing wrong doing that. You just have to put a simple html script for this. The script will even open your new window without toobar in following way & mold it for your popup window as you wish. This code will open a new window without toolbars, menubars, & so on for a hyperlink: Code: <script language="Java Script">
function openit(sURL){ newwindow=open(sURL,"newwin","scrollbars=no, toolbar=no, directories=no, menu bar=no, resizable=yes, status=yes, width=400, height=250");
}
</SCRIPT> |
|
#3
| ||||
| ||||
| Re: To open a popup window with no toolbar.
To open a simple popup window: Code: window.open("win1.html","Window1", "menubar=no,width=430,height=360,toolbar=no"); Note: the options are all in a single set of quotes. The code to close the popup is: Code: <a href="javascript:self.close()">close window</a> http://blazonry.com/javascript/windows.php I hope this helps you understand the popups:
__________________ The FIFA Manager 2009 PC Game |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "To open a popup window with no toolbar." | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Folders open in new window despite selecting the option of open in same window | Hahtalekin | Operating Systems | 4 | 24-01-2011 10:05 AM |
| How to Open Popup Window in Javascript? | Soumen | Software Development | 4 | 07-02-2010 03:02 AM |
| How to open Gmail account in a popup Window? | roodiii | Technology & Internet | 5 | 01-02-2010 12:02 PM |
| How to get a popup window using ajax? | khabi | Software Development | 2 | 29-06-2009 06:07 PM |
| Popup a non-resizable window | Alexxx | Software Development | 3 | 15-04-2009 09:26 AM |