I want to get the name of the Day when choosing date from jquery ui calender.
for example, when choosing 14-3-2012 it should returns Wednesday.
$(\"i
Try:
onSelect: function(dateText, inst) { var date = $(this).datepicker('getDate'); var dayOfWeek = date.getUTCDay(); }