I very happy using the datepicker from jQuery UI.

and the onSelect: function... works perfectly.

But:

How do I go about triggering a function when I click the "gotoCurrent"-button beneath the calendar. As far as I can see I can only trigger on onSelect by default, so I guess what I need to do is actually extend the functionality of datepicker?

Any hints on what I need to do?

Thanks in advance!

link|improve this question

feedback

2 Answers

$( ".selector" ).datepicker({ gotoCurrent: function(){...}; });

I believe that will work. If I understood you correctly.

Alternatively:

$('ui-datepicker-current').click(function(){
     some function

});
link|improve this answer
I couldn't get this to work. Have you tested it ? – CodeMonkey Nov 16 '10 at 18:26
feedback
up vote 0 down vote accepted
    $("#datepicker button.ui-datepicker-current").attr("onclick", "");
    $("#datepicker button.ui-datepicker-current").click(function() {
        //do stuff
    });

This worked. If anyone has a more beautiful solution I'd be happy to see it :-)

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.