Please help me .. I have a js function
function updateAb(param){ some manipulation }
And I call jqery datepicker onselect, for example.
$( ".datepicker").datepicker({onSelect: function(dateText, inst) { ... }});
I want to call js function in select, how to do this? My goal is to get the onselect date value from the datepicker and set the attribute value in the input field. Can someone help me ???
source share