항상 화면 중앙에 새창 띠우기

미리보기 : http://oxtag.com/html/ex/new_win_center.html

아래 소스를 헤드안에 넣으세요.

<SCRIPT LANGUAGE="JavaScript">
<!--
function launchCenter(url, name, height, width) {
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;
    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  return window.open(url, name, str);
}
var win = launchCenter('../filter.html', 'center', 220, 440);
// -->
</SCRIPT>
Posted by 알 수 없는 사용자
,