this should work
$.validator.addMethod("endDate", function(value, element) {_x000D_
var startDate = $('#date_open').val();_x000D_
return Date.parse(startDate) <= Date.parse(value) || value == "";_x000D_
}, "* End date must be after start date");
_x000D_