Html5 PasswordInput
Bind to the change event by type: jqxPasswordInput. Author: http://jqwidgets.com
by jqwidgets
HTML
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<script src="https://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="https://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<input type="password" id='input' />
<div id="log"></div>
JavaScript
$("#input").jqxPasswordInput({
width: '250px',
height: '25px',
placeHolder: "Enter a Password",
theme: 'energyblue'
});
$('#input').on('change', function () {
$("#log").html('The value has been changed. ');
});