I'll try to answer:
How to start you'll find - here
You will need theese: (link them in top of your page.)
- jQuery Library: Datepicker requires including jQuery.
- JavaScript: ui.core.js and ui.datepicker.js
- CSS Theme: Create your theme with ThemeRoller
You can find great demo about basis - here
<script>
$(function() {
/*function that makes appear datepicker + you add option to disable Weekends*/
$(".selector").datepicker({ beforeShowDay: $.datepicker.noWeekends })
});
</script>
<div id="demo">
<p>Date: <input class="selector" type="text"></p> //input field that calls the function
</div>
2 things to do:
- link jquery.js + ui.core.js and
ui.datepicker.js + your css theme to
your page
- paste this code into your
webpage.
I can suggest you to do as i did - run threw a lot of tutorials, and most important thing to do - experiment!