because i plan to retrieve records depend on the date that i chose in the datepicker which needs to be compare in database. But i dont know how to retrieve the selected date and pass it in a php variable.
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Display inline</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(document).ready(function() {
$('#datepicker').datepicker( {
onselect: function(date) {
alert(date);
},
});
});
</script>
</head>
<body>
Date: <div id="datepicker"></div>
</body>
</html>
sorry for my grammar, thank you

New Topic/Question
This topic is locked


MultiQuote

|