반응형
<script>
function PopCenterOpen(url, name, width, height, scroll){
var x_pos = (screen.availWidth - width) / 2;
var y_pos = (screen.availHeight - height) / 2;
window.open(url, name, 'width=' + width + ', height=' + height + ', left=' + x_pos + ', top=' + y_pos + ', scrollbars=' + scroll);
}
PopCenterOpen('http://doonee.tistory.com', '두니의일상팝업', 600, 400, 'yes');
</script>
'프로그래밍 > 스크립트' 카테고리의 다른 글
폼아이디가 배열방식일 경우 배열로 공백 체크하기, asp 실행을 javascript로... (0) | 2013.08.23 |
---|---|
오늘 하루 새창 띄우지 않는 스크립트 (0) | 2013.08.23 |
영문,숫자만 입력 가능한 스크립트 정규식 함수 - 이메일 아이디 등에 활용 (0) | 2013.08.22 |
자주 사용되는 이메일도메인 계정폼 (0) | 2013.08.22 |
이메일 도메인 체크 정규식 함수 (0) | 2013.08.22 |