I'm using this code to extract date from text without time. Is there any method to extract date without time and vice versa?
$(document).on("change", "#select_date", function() {
const at = $('#select_date :selected').text()
//2016-03-26 15:22:02
const attend_date = at.substring(0,10)
});
You can
split()
the date by space and select the first part: