I want alert the date selected by user. I am using datepicker as inline, have tried below code but it doesn't work.

where #cal is my div. Thanks in advance.

 $(function () {
        $("#cal").datepicker({
            onSelect: function (date, picker) { alert(date); }
        });
    })
link|improve this question
common guys 8 views and no reply.... – Prashant Yadav Nov 9 '11 at 9:17
it worked for me also.. I was doing some mistake else where.. Thanks – Prashant Yadav Nov 9 '11 at 10:14
have you included all javascript files? – William Niu Nov 9 '11 at 21:51
feedback

1 Answer

up vote 0 down vote accepted

Your code works for me: http://jsfiddle.net/jQ2B8/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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