Jquery 마우스 위치

jQuery(document).ready(function(){
	$(document).mousemove(function(e){
		arr_mousexy["x"] = e.pageX;
		arr_mousexy["y"] = e.pageY;
	});
});


'Javascript' 카테고리의 다른 글

체인 (Chain)  (0) 2011.05.03
모바일웹 자동 이동  (0) 2011.04.25
typeof 정확한 판별  (0) 2009.11.26
DOM 프로퍼티  (0) 2009.11.04
에러처리  (0) 2009.10.16