I am using the bootstrap datepicker from here and the bootstrap validator from here. Also I am using bootstrap v3.1.1.
After selecting a date from datepicker the va
Above accepted answer didn't work me. What worked for me was very simple.
$('#datefield').datepicker().on('changeDate', function (e) { $('#datefield').focus(); $('#anyotherfield').focus(); $('#datefield').focus(); });
Hope this helps!