I have a table which should return values based on the date submitted. I want to make the datepicker send an ajax request to the server whenever the date has been changed. I am looking for a sample example to implement this. Thanks in advance..
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
<div class="demo">
<p>Date: <input type="text" id="datepicker"></p>
</div>
1 Answer