please help me, how can i edit my javascript to submit form after select a date
Date:
I found solution. You may rewrite code like this.
$(document).ready(function() { $('#datepicker').datepicker({ onSelect : function (dateText, inst) { $('#formId').submit(); // <-- SUBMIT }}); });
This code from another post