_x000D_
$(".show-pass").click(function (e) {_x000D_
e.preventDefault();_x000D_
var type = $("#signupform-password").attr('type');_x000D_
switch (type) {_x000D_
case 'password':_x000D_
{_x000D_
$("#signupform-password").attr('type', 'text');_x000D_
return;_x000D_
}_x000D_
case 'text':_x000D_
{_x000D_
$("#signupform-password").attr('type', 'password');_x000D_
return;_x000D_
}_x000D_
}_x000D_
});
_x000D_
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>_x000D_
<input type="text" name="password" class="show-pass">
_x000D_