At least in Chrome, an option could be just to show the date excluding the time. This make more sense to the end user.
//Update the dates
$(document).ready(function () {
$('input[type=text]').each(function () {
$(this).val($(this).val().replace('12:00:00 AM', ''));
})
});