tags:

views:

31

answers:

3

I have to open a new window

window.open();

But in IE, it will detects a popup and block, if I allow then the window is opened.

How can I bypass this popup blocker and open it directly?

A: 

You can't bypass any good popup blocker. The reason why it is called a popup blocker is because it blocks popups.

Kranu
jquery popupWindow , What anything like that with mootool ?
Chameron
jQuery/mootools can't do it either. If you really need a popup, the most honest way would be to make a Link to open a page in a new window (target="_blank" attribute). Sometimes, you can also make flash popup windows, which can bypass weak browser popup blockers.
Kranu
A: 

How are you trying to open the popup? If it is through a user click I guess it shouldn't be a problem, unless you are using 3rd-party tools to block popups.

Although if you are trying to open on a mouse event or load event you will not be able to without user consent.

BrunoLM
users will only click on link when they need, and i want to pass popup blocker,
Chameron
+1  A: 

An alternative to a popup window would be to use a modal dialog. There are many jQuery options available, take a look:

Naeem Sarfraz
i don't want to something like modal, it only open a window, i want to open more window when user click at time , user can see and compare
Chameron
are you opening up links to other sites or pages within your own site?
Naeem Sarfraz
page in my site ,
Chameron