Question

What is the difference between Popup , chromeless window, modal-window, lightbox, hover ad?

Which is unblockable with default setting on any browser, more accessible with screen reader and even accessible if javascript disabled?

Was it helpful?

Solution

Popup: Anything that pops up from your browser. They tend to annoy users, and therefore they are often blocked by the browsers.

Chromeless Window: Just another kind of popup window that doesn't show the browser menu or toolbar.

Modal Window: The JavaScript alert() method is an example of a modal dialog. The users must acknowledge the popup before they can return to operate the parent application.

Lightbox: A modal-dialog JavaScript implementation normally used to display images. Requires JavaScipt and it isn't blocked by browsers unless JavaScript has been disabled.

Hover Ad: These are implemented in JavaScript similarly to Lightbox, but are not modal so the users may continue using the parent application. They are used for online advertising solutions and most implementations do not scroll with the web page, and therefore may obscure some of the content. While there is a big chance that Hover Ads may annoy users, they are quite difficult to block.

OTHER TIPS

Depending on the Browser you use, Internet Explorer and Firefox completely blocks the pop-ups with JavaScript Disabled, Google Chrome on the other hand lets Alert Boxes and Announcement boxes still pop-up.You can test it here using your Google Chrome Browser: Alert Box

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top