반응형
(function ($, undefined) {
$.fn.getCursorPosition = function() {
var el = $(this).get(0);
var pos = 0;
if('selectionStart' in el) {
pos = el.selectionStart;
} else if('selection' in document) {
el.focus();
var Sel = document.selection.createRange();
var SelLength = document.selection.createRange().text.length;
Sel.moveStart('character', -el.value.length);
pos = Sel.text.length - SelLength;
}
return pos;
}
})(jQuery);
728x90
반응형
'웹 개발' 카테고리의 다른 글
javascript - string format ( {0} 과 같은 형태의 문자열을 replace ) (0) | 2019.08.24 |
---|---|
javascript - comment documentation ( 주석을 문서화 ) (0) | 2019.08.24 |
Convert ArrayList containing Strings to an array of Strings in Java (0) | 2019.08.24 |
[javascript] undefined (0) | 2019.08.24 |
javascript arguments.callee (0) | 2019.08.24 |