After invalidate the default behaviour of the form I would like to display HTML5 client-side validation error bubbles.
I did try the following code but it does not work.
Any ideas?
validateForm: function (event) {
event.preventDefault();
// some code
console.log(this.$el.find('form')[0]); // it display the form I would like to validate
this.$el.find('form')[0].checkValidity();
});