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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.