Показать сообщение отдельно
  #6 (permalink)  
Старый 27.09.2015, 18:46
Аспирант
Отправить личное сообщение для olegalimov Посмотреть профиль Найти все сообщения от olegalimov
 
Регистрация: 27.09.2015
Сообщений: 94

http://javascript.ru/forum/newreply....reply&p=389904

<td width="50px"><input style="width: 140px" name="pass" type="password" placeholder="Password" />
<button tabindex="-1" aria-hidden="true" class="password-reveal" type="button"><img src="http://webvm.ru/images/isp/eye2.png" /></button>
 <script>
 (function () {
 var input = document.querySelector('input[name="pass"]');
 document.querySelector(".password-reveal").addEventListener("click", function () {
 if (input.getAttribute('type') != 'text') {
 input.setAttribute('type', 'text');
 } else {
 input.setAttribute('type', 'password');
 }
 });
 })();
 </script>

исправил все равно не работает
Ответить с цитированием