I have a datepicker as shown in this JSfiddle. I need to get the value of that datepicker and display it below calendar without any text box. How can I do it?
I tried
alert($("#datepicker").val());
and
alert($("#datepicker").getText());
and
alert($("#datepicker").getValue());
But it didn't work. How can I implement this?