겨미♡웹

EasyDrag jQuery Plugin 본문

JS & AJAX

EasyDrag jQuery Plugin

겨미겨미 2007. 7. 20. 13:34
Drag & Drop이 이렇게 간단해도 되는걸까?

fromvega.com에 포스팅 된 jquery를 이용한 Drag & Drop 라이브러리를 소개한다.
사용자가 드래그한 좌표 저장을 통한 UI 구현에 도움이 될 듯 싶다.
<div id="box">
	나는야 박스<br />
	드래그 해보아요~
</div>

<script src="jquery.easydrag.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
	// #box1를 드래그 가능하도록 설정한다.
	$("#box1").easydrag();
 
	// drop 시에 이벤트 부여
	$("#box1").ondrop(function(){ alert("drop 되었음!"); });
});
</script>

나는야 박스
드래그 해보아요~
Comments