Alert box and pop up blockers?

O

optimistx

How have you solved the usage of alert box (or other modal message box),
when
users have pop up blockers active?

In the testing alert boxes seem to be a reliable way to interact with
users. But some designers use a div, which covers the
whole page so that the use has to (?) click that window before
proceeding. The div has been designed so that the actual
'box' is in the middle and alla the surrounding area is dimmed.

One might think that modal message boxes have nothing to do
in the production code. But when proceeding towards the
Ideal Errorfree Elegant program a lazy newbie programmer tends
to make compromises and misstakes.

Better alternatives?
 
N

Noah Sussman

some designers use a div,

Yes, a css overlay is imo the least intrusive and most reliable way to
notify the user, given that popup blockers are now ubiquitous.
which covers the
whole page

not necessarily -- a div's size is arbitrary, if you are using a
library that "covers the whole page," just tweak the css a bit

try smashingmagazine.com, they probably have a nice gallery of
implemented overlays
so that the use has to (?) click that window before
proceeding.

no, an overlay does not necessarily have to be modal
The div has been designed so that the actual
'box' is in the middle and alla the surrounding area is dimmed.

A modal dialog is just one possible style of overlay. But again,
overlays are defined using a combination of JavaScript, CSS and HTML.
If you tweak the code, you can make the overlay behave however you
want (but ymmv).
 
N

Noah Sussman

some designers use a div,

Yes, a css overlay is imo the least intrusive and most reliable way to
notify the user, given that popup blockers are now ubiquitous.
which covers the
whole page

not necessarily -- a div's size is arbitrary, if you are using a
library that "covers the whole page," just tweak the css a bit

try smashingmagazine.com, they probably have a nice gallery of
implemented overlays
so that the use has to (?) click that window before
proceeding.

no, an overlay does not necessarily have to be modal
The div has been designed so that the actual
'box' is in the middle and alla the surrounding area is dimmed.

A modal dialog is just one possible style of overlay. But again,
overlays are defined using a combination of JavaScript, CSS and HTML.
If you tweak the code, you can make the overlay behave however you
want (but ymmv).
 
N

Noah Sussman

some designers use a div,

Yes, a css overlay is imo the least intrusive and most reliable way to
notify the user, given that popup blockers are now ubiquitous.
which covers the
whole page

not necessarily -- a div's size is arbitrary, if you are using a
library that "covers the whole page," just tweak the css a bit

try smashingmagazine.com, they probably have a nice gallery of
implemented overlays
so that the use has to (?) click that window before
proceeding.

no, an overlay does not necessarily have to be modal
The div has been designed so that the actual
'box' is in the middle and alla the surrounding area is dimmed.

A modal dialog is just one possible style of overlay. But again,
overlays are defined using a combination of JavaScript, CSS and HTML.
If you tweak the code, you can make the overlay behave however you
want (but ymmv).
 
T

Thomas 'PointedEars' Lahn

Noah said:
Yes, a css overlay is imo the least intrusive and most reliable way to
notify the user, given that popup blockers are now ubiquitous.

Your logic is flawed. How can approaches that circumvent popup blockers,
which are there to protect users from obtrusive popups, be less obtrusive?
"CSS overlays" of all kinds, particularly the advertising ones, are the new
plague of the Web because they are not accessible and cannot be disabled;
not yet.


PointedEars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top