I am working on JQuery event that populate another function when the
user clicks the check box, radio buttion and the drop down list. They
are all work fine with 'change(fn)'. However  the problem i found when
i use 'input type text' that get the value from calendar picker. It
seems as if 'change' function doesn't work when the value in input
type text is changed. The following is code example.  (the value in
input type is from calendar picker).

Html:
<div class=searchCalendar>
<input type="text"  value="26-11-2008" class="inp date-pick dp-
applied" name="dateTimeS" id="dateTimeS"/>
</div>

Jquery:
$('form .searchCalendar input').change(function(){
   populateSearchInfo();
});

Reply via email to