hi i am developing a facebook application. i need two date picker in my application. Is 开发者_如何学Gothere any date picker available. please help me...
jQuery UI has a wide selection of methods that can help you develop Web 2.0 applications. One of them is the Datepicker method. You can read about it at:
http://jqueryui.com/demos/datepicker/ Here is a sample implementation:
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
<div class="demo">
<p>Date: <input id="datepicker" type="text"></p>
</div>
精彩评论