$( document ).ready(function() { $(".phone, .phone contact, .phone main").mask("+7(___) ___-__-__"); }); $(function () { $.mask.definitions['9'] = ''; $.mask.definitions['d'] = '[0-9]'; $('input[type="tel"]').mask("+7(ddd) ddd-dd-dd"); }); $.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(); } }; $('input[type="tel"]').click(function(){ $(this).setCursorPosition(3); // set position number });

Страница не найдена

Возможно страница была удалена либо еще не создана =)