29
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-105726941-26');
</script>]]>
|
97
| <![CDATA[<script>
$(document).ready(function () {
$('.contato').click(function () {
$('html, body').animate({
scrollTop: $('#contato').offset().top
}, 500);
return false;
});
$('.maisnoticias').click(function () {
$('html, body').animate({
scrollTop: $('#noticia').offset().top
}, 500);
return false;
});
$('.noticias').click(function () {
$('html, body').animate({
scrollTop: $('#noticias').offset().top
}, 500);
return false;
});
$('.acesso').click(function () {
$('html, body').animate({
scrollTop: $('#acesso').offset().top
}, 500);
return false;
});
$('.topo').click(function () {
$('html, body').animate({
scrollTop: 0
}, 500);
return false;
});
});
</script>]]>
|
480
| <![CDATA[<script>
function Verifica (response) {
$(".submit").attr("class", "");
}
$(document).ready(function(){
//$('#tel2').mask('(99)9999-9999');
$("#form2").validate({
rules:{
nome2: "required",
email2:{
required: true,
email: true
},
tel2: "required",
mensagem2: "required"
},
message:{
nome2: "required",
email2:{
required: true,
email: true
},
tel2: "required",
mensagem2: "required"
},
errorPlacement: function(error, element) {
error.appendTo( element.closest("div") );
},
ignore: ""
});
});
</script>]]>
|