본문 바로가기
프로그래밍 언어/jQuery

[jQuery] 마우스로 움직이는 팝업레이어 - 제이쿼리로 만들기

by 우림 2015. 7. 22.



$(function() { $( "#draggable" ).draggable(); });

draggable() 메소드만 호출하면 됩니다.


<head>~</head> 사이에 아래 스크립트 넣어주는 거 잊으면 안되겠죠.

<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>




댓글