

NetSpeeder2 v.2.3.780 Block popup and flying ADs, accelerator your web pages.PopupVanish v.1.0.0 Have you ever wondered how to get rid of those unsolicited popup windows when you surf the net? PopupVanish is a free popup killer for Internet Explorer that stops all annoying popups without interfering with your browsing.Whether you use Internet for business or for fun, make it a good experience. Popup Blocker v.1.0.0 Surfing the Internet does not have to be a nightmare! Our Popup Blocker will get rid of those annoying popup windows.Features: (1) Decrypt web pages that are encrypted using the NIST standard AES encryption.(2) Block popup windows efficiently.Sample of encrypted pages: XTyHTMLDecrypter v.2.2 xTyHTMLDecrypter is a FREE and light-weighted Internet Explorer extension (not a toolbar!).Besides blocking annoying popup windows the software allow you to control the content of sites you visit and ensure confidential Web surfing. Safe Surfer v.4.2 Safe Surfer is an award-winning tool for safe surfing in the Internet.For example, if you enter 'Calcu', the Microsoft Calculator will be automatically closed when it is. Close Popup Windows By Name Software v.7.0 Close windows in Windows by their name before they appear.For example, if you enter 'Calcu,' the Microsoft Calculator will close automatically when run. Automatically Close Popup Windows By Nam v.7.0 Close windows by their name before they appear.For example, if you enter "Calcu", the Microsoft Calculator will be automatically closed when it is run. Automatically Close Popup Windows By Name Software v.7.0 Close windows in Windows by their name before they appear.You need to know that window.open has a return value, and that value may be null if the action failed. The _blank bit helps for the mailto redirection to work on mobile, btw.Īs a good practice I think it is a good idea to test if a popup was blocked and take action in case. I actually use this solution for a mailto redirection, and it works on all my browsers (windows 7, Android). Examples:Ī) An external HTML page: replace the above line with var importantStuff = window.open('', '_blank') ī) Text: add the following line below the above one: ('Loading preview.') įill it with content when ready (when the AJAX call is returned, for instance) = '' Īlternatively, you could close the window here if you don't need it after all ( if ajax request fails, for example - thanks to for the comment): importantStuff.close() Optional: add some "waiting" info message. (Enrich the call to window.open with whatever additional options you need.) Immediately create a blank popup on user action var importantStuff = window.open('', '_blank') Based on Jason Sebring's very useful tip, and on the stuff covered here and there, I found a perfect solution for my case:
