Results 1 to 3 of 3

Thread: Generating a Minimized Pop-Up Window using JavaScript

  1. #1
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default Generating a Minimized Pop-Up Window using JavaScript

    Hi Folks,

    Is there any method in JavaScript to create a POP-UP Window minimized ie once it is generated it should only be visible on the task bar.

    Any help towards my objective would be appreciated

    Thanks for your help in advance

    Code Exploiter

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I've never seen that so, it probably isn't possible but, may be. I have seen quite a bit of these pop-under windows. As soon as they pop-up, they move underneath the active window. That can be done like so:
    Code:
    var win=window.open('somepage.htm');
    win.blur()
    You can use a more involved window.open() command if you like, naming the new window, giving it properties as well if you like.

    But, be careful. This type of 'stealth pop-up' is considered especially obnoxious by most users. It will drive people away from your site if the site isn't already immensely popular and it may do so even with a popular site. Also, many pop-up blockers will prevent it from working at all, especially if it isn't launched as a direct result of the user's clicking on a link and sometimes, even if it is.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Hi jscheuer1,

    Thanks for the help

    Code Exploiter

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •