var Page_INIT = function() {
$( document).bind("mouseover", function (e) {//마우스가
if (e.target.tagName.toUpperCase() == "INPUT") {
var input = e.target;
if (input.type == "text") {//텍스트 상자인 경우
if (window.Page_FocusTimer) {//포커스 상태인 경우
window.clearTimeout(window .Page_FocusTimer);//포커스 상태 지우기
}
window.Page_FocusTimer = window.setTimeout(function () { //0.2밀리초마다 이 익명 메서드를 실행합니다
if (!input.value) {/ /내용이 비어 있으면 포커스로 설정합니다
try {
input.focus()
} catch (e) { }
}
}, 200); }
}
}).bind("mouseout", function (e) {//마우스아웃
if (e.target.tagName.toUpperCase() == "INPUT") { //The 처리 중인 이벤트 소스 객체 이름(예: HTML 태그)을 대문자로 변환하면 INPUT
var input = e.target
if (input.type == "text") {
if (window.Page_FocusTimer) {
window.clearTimeout(window.Page_FocusTimer)
}
}
}
});