Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have JS code that when you change a field it will call a search routine.... the problem is I can't find a Jquery event that will fire when the Datepicker updates the input field.

For some reason a change event isn't called when datepicker updates the field. When the calendar pops up it changes the focus so I can't use that either. Any ideas?

share|improve this question

3 Answers

up vote 39 down vote accepted

You can use the datepicker's onSelect event.

$(".date").datepicker({
  onSelect: function(dateText) {
    display("Selected date: " + dateText + "; input's current value: " + this.value);
  }
});

Live example


Update: If you like, of course, you can make the change event on the input fire:

$(".date").datepicker({
  onSelect: function() {
    $(this).change();
  }
});

That will fire change on the underlying inputfor any handler hooked up via jQuery.

Live example

share|improve this answer
@user760092: I posted this answer and then went out, and literally as I was leaving I thought "You know, you could trigger the change handler(s)" and so I've updated the answer with that. :-) – T.J. Crowder Jun 24 '11 at 21:52
I hv a scenario where I am changing the date (using setDate option) programatically. Which event can handle this too..?? – harsh Mar 27 at 10:27
$('#inputfield').change(function() { 
    dosomething();
});
share|improve this answer

Your looking for the onSelect event in the datepicker object:

$('.selector').datepicker({
   onSelect: function(dateText, inst) { ... }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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