//커서위치 가져오기 $.fn.getCursorPosition = function() { var input = this.get(0); if (!input) return; // No (input) element found if ('selectionStart' in input) { // Standard-compliant browsers return input.selectionStart; } else if (document.selection) { // IE input.focus(); var sel = document.selection.createRange(); var selLen = document.selection.createRange().text.length; sel.moveStart('character', -input.value.length); return sel.text.length - selLen; } } //커서위치 변경시키기 $.fn.selectRange … 계속 읽기 사업자번호 000-00-00000 자동생성 및 커서 중간 수정해도 커서 뒤로 안가는 로직