JavaScript DateTimeInput
Bind to the textchanged event by type: jqxDateTimeInput.
Author: http://jqwidgets.com
HTML
<script src="http://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<script src="http://jqwidgets.com/jquery-widgets-demo/jqwidgets/globalization/globalize.js"></script>
<div style="margin: 10px;" id='jqxDateTimeInput'></div>
<div style="margin: 10px; float: left;" id="log"></div>
JavaScript
$("#jqxDateTimeInput").jqxDateTimeInput({
width: '250px',
height: '25px',
theme: 'energyblue'
});
$('#jqxDateTimeInput').on('textchanged', function (event) {
// $("#log").html("The text has been changed");
});
$('#jqxDateTimeInput').on('keypress', function (event) {
$("#log").html("keypress");
});