Web Analytics Made Easy -
StatCounter Pop-up Centering? - CodingForum

Announcement

Collapse
No announcement yet.

Pop-up Centering?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Pop-up Centering?

    lol I know this sounds dumb but is there such thing as script that centres pop-ups to the middle of the screen?

    I have the pop-up code I just need the centering if there is such a thing?

    Thanks

  • #2
    var x = (screen.width - popupWidth) / 2;
    var y = (screen.height - popupHeight) / 2;
    var myWin = window.open('popup.url');
    myWin.moveTo(x, y);


    you have to repalce popupWidth and popupHeight with actual numbers.
    bluemood | devedge | devmo | MS Dev Library | WebMonkey | the Guide

    i am a loser geek, crazy with an evil streak,
    yes i do believe there is a violent thing inside of me.

    Comment


    • #3
      goto http://www.eak.homeip.net/portfolio/newwindowgen.php
      eak | "Doing a good deed is like wetting your pants; every one can see the results, but only you can feel the warmth."

      Comment

      Working...
      X