I've noticed when a date is set in Datepicker and is assigned .ui-state-active class, the same date (1-31) on different months also get assigned the .ui-state-active class.
Example:
August 15, 2010 is selected and picks up .ui-state-active class. All other month's 15th day will also pick up the .ui-state-active class.
This was not a problem with the previous version of Jquery UI. Since upgrading, my calendars now have the selected date also selected for all other months.
Do i need to encode my data send through AJAX post? Ex. var name = $("input#name").val(); var dataString = 'name='+ name; /////////////////////////////////////////////// $.ajax({ type: "POST", url: "mail.ajax.php", data: dataString, dataType: "html" }); /////////////////////////////////////////////// How can I do an URLecode? thanks!