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>
исправил все равно не работает