How can I pick a value from Datepicker?
I have tested Appery('Datepickername').val() and Appery('Datepickername').text() and anything seems to work...
How can I pick a value from Datepicker?
I have tested Appery('Datepickername').val() and Appery('Datepickername').text() and anything seems to work...
Hello -
Try this:
pre
code$("[name='Datepickername']").find('input').attr('id','inputStartDate');/code
codevar inputdate = $("#inputStartDate").val();/code
code
alert (inputdate);
/code
/pre