Slashdot Mirror


Next-Gen Pop-up Ads

bje2 writes "CNet has a disconcerting story about a new generation of pop-up ads that use a "kick through" technique such that you don't even need to click on the pop-up ad anymore, you just need to mouse over it...wow, can they make our web surfing experience any worse?"

2 of 526 comments (clear)

  1. Re:excellent promotion for alternate browsers by Jugalator · · Score: 5, Interesting

    This all sounds like nice possibilities for Mozilla (andother alternative browsers) to block those annoying ads in their default setup. Maybe M$ Internet Explorer might catch up one day, but I'm not waiting for that! ;-p

    Hmm... Moz can't just block these kind of ads or all those javascript menus and other leditimate onMouseOver scripts that's quite common might stop working.

    However, Moz could add a feature similar to "block images from this server", but "block scripts from this server". However, the scripts can still be on the actual web server which won't help much since it would again block *all* scripts from the server which we don't want.

    A solution might be to tell Mozilla to "block scripts associated with images of this size".

    That's the best I can think of now, since ads almost never change size and it's fairly unusual to have legitimate images in the same standardized size as advertisments.

    --
    Beware: In C++, your friends can see your privates!
  2. Re:Easier Fix.... by nautical9 · · Score: 5, Interesting
    Care to point out a single constructive use of popups?
    How about a login/password box (and NOT using the antiquated HTTP method of authenication - for one, it has no way to "logout" a user). OR any quick dialog box that requires a yes/no/cancel interaction. OR one that validates user input (removing the slow interaction between server and client just to confirm they actually typed something useful into the text box)

    Almost every executible GUI program we use today has many of these kinds of "pop-up" dialog boxes - some more complicated than others (from confirmation dialogs to config screens). And all of them serve a useful purpose.

    I'm a firm believer that developing apps using HTTP/(X)HTML as an interface is a smart move, as opposed to writing an executible for a specific platform - since it is a true write-once, run-anywhere tech (well, access-anywhere, at least from as far as client access is concerned.) And there's no reason we, as web developers, shouldn't be able to use pop-up windows for web-enabled apps.

    Just because commercial sites the world over have abused pop-(up|under)s, doesn't mean the technology itself is useless.

    ps. - I realize Mozilla allows you to disable scripts from opening "unrequested" windows (ie. where any "window.open" call is ignored, unless it applies to link you just clicked), but for a complicated site with various domains (eg. secure/non-secure), or other complications, it still isn't a robust enough solution to those of use developing true web-enabled applications.