Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<input type="text" name="name666">
<input type="tel" name="name666">
document.querySelectorAll("[name='name666']").forEach(i => i.type = 'tel')
$("[name='name666']").attr('type', 'tel');
document.querySelectorAll("[name='name666']")
var tel = document.querySelectorAll("[name='name666']"); $(tel).attr('type', 'tel');
document.querySelector("[name='name666']").setAttribute('type', 'tel');
$('.form').find('input:text').each(function() { $("<input type='tel' />").attr({ name: this.name }).insertBefore(this); }).remove();
$(".form").find("[name='name666'] ").each(function() { $(" <input type='tel' /> ").attr({ name: this.name, placeholder: this.placeholder }).insertBefore(this); }).remove();