vote up 0 vote down star

Does anyone know if it is possible to use the jQuery UI Datepicker, and when clicking on a date, set the document.location to that date, appended to a preset URL?

So, if I clicked on one of the dates, it might direct me to:

http://www.mysite.com?date=2009-10-25

I need to just use this as a quick way to quickly navigate my website calendar.

Ideas?

flag

77% accept rate

3 Answers

vote up 0 vote down check

Just give it an onSelect function to call.

link|flag
Ok, stupid me. Thanks. – Nic Hubbard Oct 21 at 19:24
vote up 0 vote down

I assume you download datapicker from Jqueryui.com with examples so you can get choosen date from callendar with:

$('#datepicker').val()

so paste it in onclick() function or onchane()

link|flag
vote up 0 vote down

I did small example, it works for me just change date format :)

		$().ready(function()
						{  
							$('#datepicker').click
												( function()
													{
													window.location.replace("http://www.mysite.com/?date=" + $('#datepicker').val());
													}
												);
						}
				);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.