Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turn Off - “prevent this page from creating additional dialogs”

How do I turn off the Firefox feature “prevent this page from creating additional dialogs”?

I get this problem, when I open more than one confirm box(dialog).

Is it possible to prevent this feature via Javascript?

like image 703
Karthick V Avatar asked Aug 06 '12 06:08

Karthick V


2 Answers

This is a browser feature and is intended to protect the user. If you could turn it off, all those sites spamming users with dialogs would have a way to stop it.

So in short, no.

Make your application work with it, instead of against it. Don't rely on dialogs/confirmations too much, rather have a modal-box ask the questions; it is pretty too :)

like image 174
epoch Avatar answered Sep 17 '22 19:09

epoch


Open about:config then change the pref dom.successive_dialog_time_limit

Of course this only works for your own browser, you can't change it for other people.

like image 26
Ariel Avatar answered Sep 16 '22 19:09

Ariel