It is working fine for a password field to prevent to remember its history:
$('#multi_user_timeout_pin').on('input keydown', function(e) {_x000D_
if (e.keyCode == 8 && $(this).val().length == 1) {_x000D_
$(this).attr('type', 'text');_x000D_
$(this).val('');_x000D_
} else {_x000D_
if ($(this).val() !== '') {_x000D_
$(this).attr('type', 'password');_x000D_
} else {_x000D_
$(this).attr('type', 'text');_x000D_
}_x000D_
}_x000D_
_x000D_
});
_x000D_
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>_x000D_
<input type="text" id="multi_user_timeout_pin" name="multi_user_pin" autocomplete="off" class="form-control" placeholder="Type your PIN here" ng-model="logutUserPin">
_x000D_