change

This event is fired when the value of the input element is changed.


<input id="input" ></div>
<script type="text/javascript">
    $(function () {
        $("#input").shieldTextBox({
            events: {
                change: function(e) { 
                    alert(e.value); 
                }
            }
        });
    });

</script>