If I want to display the JQUERY UI datepicker inline by attaching it to a DIV like $(\"div#someID\").datepicker() - how do I access the chosen date? I assume if
$(\"div#someID\").datepicker()
If your selected elements are not one, you need use this way:
$('[type="date"]').datepicker(); $('[type="date"]').change(function() { var date = $(this).datepicker("getDate"); console.log(date); });