hi friends,
i need one help guys.Actually am trying to get the value from datepicker field by using .on("input",function(){}) in this method is not working for me i dont know why.in this mean while i have been using same method to input field there its working perfectly ,only date picker is issue
i have given my code below,
$(".jq_calander_date").on("input", function () {
alert("change")
if ($(this).val() == "__/__/____" && ($(this).parent('td').children('.ReqiredField').length > 0)) {
$(this).css('background-color', '#ffffcc');
}
else {
$(this).css('background-color', '#ffffff');
}
});
html
-------
thanks,
Rajeesh MenothPosted Dec 16, 2016, 6:15 AM
Harshal PatilPosted Dec 16, 2016, 4:17 AM
$('#BusinessDate').datetimepicker({
format: 'DD/MM/YYYY',
pickTime: false,
useCurrent: false
});
Bikesh SrivastavaPosted Nov 30, 2016, 8:39 AM
Salman BegPosted Nov 30, 2016, 4:48 AM