$( document ).ready(function() { $('#send-mail').html(`
`); }); function verCaptcha(){ if (grecaptcha.getResponse() == ""){ $(".error").html("*Los campos marcados son obligatorios"); return false; } else { $("#enviar").attr("disabled",true); $( "#formData" ).submit(); return false; } }