You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
389 B
JavaScript

const $ = require('jquery');
$(function () {
/* Form validation */
$('.form-validation').each(function (idx, form) {
$(form).on('submit', function (event) {
if (form.checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
}
$(form).addClass('was-validated');
});
});
});