Multiple Pop-Up Windows With JavaScript

Discussion in 'JavaScript' started by SgtShtTheFckUp, Mar 20, 2007.

Thread Status:
Not open for further replies.
  1. #1
    i know this may sound stupid, but im looking for a JS code that will load "x" amount of popup windows upon entry of page... no dely in between each window opening.. also if you could include the window options such as toolbars=no, address bar=no ect ect. and if a Pop-Under option can be available, that would be much appreciated also.

    thanx in advance
     
    SgtShtTheFckUp, Mar 20, 2007 IP
  2. cjburkha

    cjburkha Peon

    Messages:
    71
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Untested, but a good start.

    var num = 10;
    for (var i=0; i<num; i++)
    window.open('http://www.google.com', i + 'name', 'location=yes');

    See http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/open_0.asp

    for more info
     
    cjburkha, Mar 20, 2007 IP
  3. ajsa52

    ajsa52 Well-Known Member

    Messages:
    3,426
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    160
    #3
    If you're planning that for a site launching multiple pop-upders ads, I don't recommend it. That's the best way to loose your visitors. They will not come back to your site anymore for sure
    .
     
    ajsa52, Mar 21, 2007 IP
  4. SgtShtTheFckUp

    SgtShtTheFckUp Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    thanx man [​IMG]
     
    SgtShtTheFckUp, Mar 21, 2007 IP
  5. SgtShtTheFckUp

    SgtShtTheFckUp Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    thanx for your concern man... but thats not what its for

    :)

    im not what you would call "white hat"
     
    SgtShtTheFckUp, Mar 21, 2007 IP
  6. SgtShtTheFckUp

    SgtShtTheFckUp Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    lol... that code works PERFECT!!! thanx a MILLION!!!!
     
    SgtShtTheFckUp, Mar 21, 2007 IP
  7. cjburkha

    cjburkha Peon

    Messages:
    71
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    np, good luck with it.

    CJB
     
    cjburkha, Mar 21, 2007 IP
Thread Status:
Not open for further replies.