Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 소득세
- 블로그 수익화
- IIS
- 블로그 조회수
- CSS
- 블로그 방문자 늘리기
- .NET
- 블로그 조회수 늘리기
- JavaScript
- MSSQL
- CVS
- HTML
- Eclipse
- Administrator
- JSP
- oralce
- 블루수국그림
- Adobe pdf reader
- Vista
- PHP
- MySQL
- samba
- Jexcel
- 인테리어그림
- flash
- Jrun
- 국민연금
- 갑근세
- 즐겨찾기 추가
- 에덴미술
Archives
- Today
- Total
I LOVE EJ
팝업 풀사이즈 본문
function fullwin(targeturl){
//window.open(targeturl,"","fullscreen,scrollbars")
var winX = screen.availWidth;
var winY = screen.availHeight;
if(winX == '800') {
winX = winX - winX/95;
winY = winY - winY/18; //10
} else {
winX = winX - winX/100;
winY = winY - winY/22; //12.5
}
remote = window.open("","_blank","status=no,resizable=yes,channelmode=0,directories=0,location=no,address=no,menubar=no,toolbar=no,scrollbars=yes,width="+winX+",height="+winY+",top=0,left=0");
remote.opener = self;
if (remote != null)
{
if (remote.opener == null) { remote.opener = self; }
remote.location.href=targeturl;
remote.focus();
}
}
간단한 건 밑에꺼 그러나 가끔이상하다는 거 ㅠ ㅠ
window.open(this.href,'full', 'channelmode=yes,fullscreen,scrollbars');
'Web publishing > JavaScript' 카테고리의 다른 글
qna 탭 예제 (0) | 2010.06.22 |
---|---|
팝업 중앙정렬 (0) | 2010.06.18 |
Javascript - Mozila FireFox Copy Clipboard ( for Cross Browsing ) (0) | 2010.05.19 |
레이어 팝업 예제 (0) | 2010.04.08 |
특정 이미지만 출력해내기. (0) | 2010.03.12 |