Till this day I lived in a world where browser prevent multiple form submit by default when form is submited. How is it possible that now I need to write this
// Prevent multiple form submit
activityForm.submit(function(e) {
$(this).find('input[type="submit"]').prop('disabled', true);
});
to prevent multiple form submit? I dont understand it.