•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 361,877 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,286 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
Views: 3705 | Replies: 6
![]() |
I am developing an intranet application, in which, in some pages, when the user selects an option, I am using a pop-up window to retrieve the data and displaying it in the main page. The pop-up opens, fetches data, puts in main page and closes itself.
Since the user is not interacting with the pop-up, I would prefer it to be hidden. Can this be done ? I checked a Javascript book, which says the 'alwaysLowered' property can be used to send the pop-up behind other windows but this is a security feature and available only for signed scripts.
My Questions are:
1. Can the pop-up be hidden ?
2. What is a signed script ?
Since the user is not interacting with the pop-up, I would prefer it to be hidden. Can this be done ? I checked a Javascript book, which says the 'alwaysLowered' property can be used to send the pop-up behind other windows but this is a security feature and available only for signed scripts.
My Questions are:
1. Can the pop-up be hidden ?
2. What is a signed script ?
It depends on the way your creating the window. I'm sure there are many ways to do it. If I remeber correctly you can do it via this method:
Hope this helps you.
var win = new PopupWindow();
win.showPopup();
win.setUrl("http://www.site.com");
win.hidePopup();
Hope this helps you.
Sorry, it's not working. I am getting the error
"PopupWindow is undefined"
Here's the code (with what I was using earlier)
"PopupWindow is undefined"
Here's the code (with what I was using earlier)
var newWindow ;
var v_Options;
var v_Bars;
v_Bars = 'directories=no, location=no, menubar=no, status=no,titlebar=no,toolbar=no';
v_Options = 'scrollbars=yes,resizable=no,Height=10,Width=10,left=100,top=100,visible=false,alwaysLowered=yes';
//newWindow = window.open("Popdata.htm",'PrintWin',v_Bars + ',' + v_Options);
newWindow = new PopUpWindow() ;
newWindow.showPopup();
newWindow.setURL("Popdata.htm");
newWindow.hidePopup();•
•
Join Date: Dec 2006
Posts: 17
Reputation:
Rep Power: 2
Solved Threads: 0
Use windows called popunder. Its used often in internet advertisements.
Here u have example:
http://javascriptkit.com/script/script2/popunder.shtml
Here u have example:
http://javascriptkit.com/script/script2/popunder.shtml
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb JavaScript / DHTML / AJAX Marketplace
- Pop-up window overlapping issues (HTML and CSS)
- HELP! With Javascripts Pop-Up Window (JavaScript / DHTML / AJAX)
- Java Pop Up Window Disappears when launched from Website... (Web Browsers)
- creating a pop up window (HTML and CSS)
- Pop Up Window at specified time intervals (ASP)
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: Can I have a form without having an associated file.
- Next Thread: Multiple javascript files?



Linear Mode