|
I am facing trouble in turning the popup blocker off through watin code. Could anyone please help me in knowing how to turn off the popup blocker of IE through watin? Is there any way to turn off the popup blocker of tool bars (like google, yahoo or msn...
Started by keshav on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
All:
HKEY_LOCAL_MACHINE\Software....
See http://support.microsoft.com/kb/843016 for more information on the specific keys.
You can use .NET to change the registry keys for IE .
You can't disable this with WatiN, you could however use UIAutomation to do it .
|
|
Our java applet needs to open a new htm page to web browser but popup blocker seem to block this code:
try { AppletContext a = getAppletContext(); URL url = new URL(link); a.showDocument(url,"_blank"); }
can you use somehow live javasrcipt to open a window...
Started by Tom on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm probably not being helpful, but....
No matter what you put not be unreasonable to ask the client to whitelist your site in their popup blocker.
I am fairly sure that any popup blocker worth its salt will block popups.
|
|
It seems like when trying to open 2 windows from a succession of windows.open calls, it only allows the first window to open and deletes the reference to the second window. I know this probably sounds a little kludgy, but we do need to have that second...
Started by amvx on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The IE pop-up blocker, by default, only allows (not sure if ....
EDIT: I just realized that you probably are using a blank ('') window of using popups), which is considered a better practice.
The popup blocker for that zone.
|
Ask your Facebook Friends
|
Hi there,
Can anyone help, i have a popup that is being blocked .. it is a popup that is created because somebody has clicked on a Print picture on my site... I thought IE is not supposed to block these when the popup came via an onclick?
Can anyone help...
Started by mark smith on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Please allow ....
If (!child1) { alert('You have a popup blocker enabled.
Just do this after the code example you've provided.
You're creating the popup programatically.
It blocks it because it's not an anchor with a target="_blank" .
|
|
This might be a dumb question but what exactly is the filter rule format to globally allow sites? Do I need multiple entries to handle folder structure of the sites and entries to handle subdomains? Is an asterisk used for a wildcard, do I even need to...
Answer Snippets (Read the full thread at superuser):
If you.
Rules are simple -- like heavyd has already described.
For Pop-up Blocker should be useful.
|
|
Do you use a popup blocker? I think they save some popups, but then when I need something to pop I end up having to disable it and it drives me nuts. I think I might just disable it for good.
Started by Mr on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at yahoo):
|
|
"Popup blocker" when I try to attach pic...???
I presume this is my computer's problem. Any hints on how to make this stop happening?
TIA
widget
Started by widget on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at diamondring):
|
|
Is there a good way to determine if a person has a popup blocker enabled? I need to maintain a web application that unfortunately has tons of popups throughout it and I need to check if the user has popup blockers enabled.
The only way I've found to do...
Started by Chris Conway on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
However, a good approximate answer to the question “is a popup-blocker installedI don't think there....
Read Detect a popup blocker using for sure is to try it.
blockers don't add anything that can be interrogated in JS.
|
|
Just a quick note to those who don't know, and to new members who read this in the future, in order to get Private Message (pm) notification pop-ups of new messages, be sure to allow pop-ups for BoastingRights.
Started by ATNO/TW on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at boastingrights):
|
|
Occasionally, I've come across a webpage that tries to pop open a new window (for user input, or something important), but the popup blocker prevents this from happening.
What methods can the calling window use to make sure the new window launched properly...
Started by Nathan Bedford on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Var newWin = window.open(url);
if(!newWin || newWin.closed || typeof newWin.closed=='undefined') { //POPUP BLOCKED } Thanks.
If you use javascript to open the popup you can use something like this.
|