alpine Posted October 21, 2006 Share Posted October 21, 2006 Since one is required to begin testing with IE7 i've came across only one "problem" so far - IE7 seems to have a slightly stricter popup blocker as default compared to the default setting in IE6.One one of my sites i have a drop down menu that sets off a new window via javascript onchange. In FF,Opera and IE6 this was no problem but IE7 now stops this new window from launching.Any good solutions on a blocker alert (preferrably cross browser) so i can explain users what happened and how to allow pop ups on my site? Link to comment https://forums.phpfreaks.com/topic/24656-popup-blocker-detection/ Share on other sites More sharing options...
tomfmason Posted October 21, 2006 Share Posted October 21, 2006 How about something like this.[code]function openWindow(url) { if (window.open(url,'name','height=200,width=150')) { doSomething(); } else { alert('You will have to set your popup blocker to allow popups to see this..or whatever'); }}[/code]Is that what you were wanting?Good Luck,Tom Link to comment https://forums.phpfreaks.com/topic/24656-popup-blocker-detection/#findComment-112486 Share on other sites More sharing options...
alpine Posted October 22, 2006 Author Share Posted October 22, 2006 well, i've been testing something similar - the problem is that in the moment IE blocks content it seems to be stopping all scripts, so any custom message to the user never appears.... and thats where the challenge is.In the end the best would be to remove the dropdown-launch and do another twist i guess, but still a block message could be handy in some cases. Link to comment https://forums.phpfreaks.com/topic/24656-popup-blocker-detection/#findComment-112577 Share on other sites More sharing options...
fenway Posted October 22, 2006 Share Posted October 22, 2006 Could you not do the reverse? Have it off by default, and then add the dropdown if you do find pop-ups allowed? Link to comment https://forums.phpfreaks.com/topic/24656-popup-blocker-detection/#findComment-112824 Share on other sites More sharing options...
alpine Posted October 23, 2006 Author Share Posted October 23, 2006 Yeah, thats true - i do however hate having to do things more than one way on my sites ... and i really couldn't settle with the blocked solution anyhow, so i removed the dropdown and replaced it by a style-"hidden" html menu instead. Then the text-links triggers the popup and its not blocked by default settings. Link to comment https://forums.phpfreaks.com/topic/24656-popup-blocker-detection/#findComment-112969 Share on other sites More sharing options...
tomfmason Posted October 23, 2006 Share Posted October 23, 2006 That is what I do.. Link to comment https://forums.phpfreaks.com/topic/24656-popup-blocker-detection/#findComment-112973 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.