맛집 여행 캠핑 일상 생활

팝업레이어 위치 조정 방법 본문

JAVASCRIPT

팝업레이어 위치 조정 방법

영은파더♥ 2016. 2. 5. 10:30

DIV 팝업레이어 위치 조정


<div id="popupLayer" style="position:absolute;display:none;width:200px;height:auto;overflow:hidden;">

팝업내용

</div>


1. Javascript 로 하는 방법

document.getElementById('popupLayer').style.left = 100 + 'px';

document.getElementById('popupLayer').style.top = 100 + 'px';


2. jQuery 로 하는 방법

$('#popupLayer').css('left', 100);

$('#popupLayer').css('top', 100);



Trackback : | Comments :