A
1
ตัวอย่างโค้ด HTML
2
<input type="password" id="pass1" onfocus="showPass(this)" onblur="hidePass(this)">
3
4
ตัวอย่างโค้ด JavaScript
5
<script>
function showPass(val) {
document.getElementById(val.id).type = 'text'
}

function hidePass(val) {
document.getElementById(val.id).type = 'password'
}
</script>
6