LoginSignup
14
13

More than 5 years have passed since last update.

PASSWORD入力ボックスで、オンマウスしたときはパスワードを見せる

Posted at

セキュリティ的にいいかわるいかは別にして、
オンマウスのときだけパスワードを表示してあげたら便利な場面もあるんじゃないかと思いました。

<script>
$(document).ready(function(){
  $('input[type="password"]').bind("mouseenter", function(){
    $(this).attr('type','text');
  });
  $('input[type="password"]').bind("mouseleave", function(){
    $(this).attr('type','password');
  });
});
</script>

hoge.png

14
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
13