Request pricing
Fill in the form below and we will send you a quotation for the requested products.
function isEmail(email) {
var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
return regex.test(email);
}
$( ".wpcf7-submit" ).click(function() {
var nome = $(".your-name input").val();
var empresa = $(".empresa input").val();
var estado = $(".estado input").val();
var cidade = $(".cidade input").val();
var telefone = $(".telefone input").val();
var email = $(".your-email input").val();
var mensagem = $(".your-message textarea").val();
if (nome != "" && telefone != "" && email != "" && mensagem != "" && empresa != "" && estado != "" && cidade != "") {
if(isEmail(email)){
gtag('event', 'clique', {
'event_category' : 'Orcamento',
'event_label' : ''
});
}
}
});