Einzelnen Beitrag anzeigen
Alt 16.11.2001, 10:18   #3
_m3
Inventar
 
Registriert seit: 24.09.2001
Beiträge: 7.335


Standard

JavaScript deaktivieren.

Oder mit Mozilla:
////////////////////////////////////////////////////////////
// Control of popup windows
////////////////////////////////////////////////////////////

// Use configurable security policies to override popups, see
// http://www.mozilla.org/projects/secu...figPolicy.html
// Turn window.open off for particular sites:
user_pref("capability.policy.popupsites.sites", "http://www.annoyingsite1.com http://www.popupsite2.com");
user_pref("capability.policy.popupsites.Window.ope n","noAccess");
// Or turn it off everywhere:
user_pref("capability.policy.default.Window.open", "noAccess");

// More important, disable JS windows popping up a new window on load
// (as lots of porn and spam sites do):
user_pref("dom.disable_open_during_load", true);

// Override popping up new windows on target=anything
user_pref("browser.target_new_blocked", true);
____________________________________
Weiterhin zu finden auf http://martin.leyrer.priv.at , http://twitter.com/leyrer , http://www.debattierclub.net/ , http://www.tratschen.at/ und via Instant Messaging auf Jabber: m3 <ät> cargal.org .
_m3 ist offline   Mit Zitat antworten