I have this XSLT file that is loaded onto the page and then I am try to get this jquery event to fire off. Is there anything for this to work? The function is in the document.ready so I am not sure why its not working.
http://jsfiddle.net/tjmcdevitt/rtxoyb57/9/
xslt
<div class="input-group">
<input class="form-control" id="txtstartIpAddr" name="txtstartIpAddr" type="text"
maxlength="12" size="12"></input>
</div>
jQuery
$('#txtstartIpAddr').on("input", function() {
var dInput = this.value;
console.log(dInput);
});