📅  最后修改于: 2022-03-11 15:01:46.037000             🧑  作者: Mango
// jQuery-плагин Ð´Ð»Ñ ÑÑÑановки кÑÑÑоÑа в опÑеделенной позиÑии pos:
$.fn.setCursorPosition = function (pos) {
if ($(this).get(0).setSelectionRange) {
$(this).get(0).setSelectionRange(pos, pos);
} else if ($(this).get(0).createTextRange) {
var range = $(this).get(0).createTextRange();
range.collapse(true);
range.moveEnd('character', pos);
range.moveStart('character', pos);
range.select();
}
};
$('[name="phone"]').click(function () {
$(this).setCursorPosition(3);
}).mask('+7 (999) 999-99-99');