Using the code below I send an email, but if I leave the inputs blank it sends it anyway. I want to validate the form before sending it, to make sure that they are not blank.
j( document ).on( "submit", ".form-horizontal", function() {
j.post(this.action, j(this).serialize(), function(){
//this callback is executed upon success full form submission close modal here
}, "script");
j(this).parent().find('.respuesta').removeClass('oculto'); //to show a success message
j(this).parent().find('.nota-enviar').addClass('disabled'); //to prevent double click
setTimeout(function() {j('.modal').modal('hide');}, 2000); //close modal after 2 seconds
return false;
});
I tried adapting this example but I could not get it to work. You can see the form at work here. Go to Press Room (Sala de prensa). Display a note, click on Share (Compartir) and click on the mail icon. This will show the Modal with the form.
There are many plugins to help you with form validation, but for a single form with 4 elements it's probably not needed. Your "Contact form 7" classes should validate the elements, but since you have a few javascript errors on your site (check console) I guess it's not working like it should.
This is a very basic and simple example of how it could be done without plugin dependency (using an alert):
You could also use a bit more complex solution, looping through the elements and toggling the "required" span: