jQuery Rich Date Picker Plugin Demos

by Archy Sharp

More Usages

Position

There are 2 built in positions: bottom(default) and top. You can set your own properties via class and proper argument like this:

					
	// JS
	$('.rich-datepicker-input').first().richDatepicker({position: 'abc'});

	// CSS
	.position-abc .rich-datepicker {...}
					
				

Methods

Date: 7 February 2012
					
	$('input').data('date').val(); // [7, 2, 2012]
	$('input').data('date').textVal(); // "7 February 2012"
	$('input').data('date').val(1,1,2011); // $('input').data('date').val(); -> [1, 1, 2011]
					
				

Events

Datapicker input emits 'datachanged' event each time day, month or year changed.