72
| <![CDATA[<script>
function validabuscamn() {
var time_debut = document.getElementById("ctl00_headerSearch").value;
if (time_debut == '') {
alert("Informe o termo de sua busca!");
return false;
}
else {
document.getElementById("aspnetForm").submit();
return true;
}
}
</script>]]>
|
482
| <![CDATA[<script language="javascript" type="text/jscript">
function soNumeros(e) {
//OnKeyPress="return soNumeros(event);"
//http://gujs.com.br/forum/viewtopic.php?p=4556&sid=cd30d1dcd23d5eee241a2b770e24ce5d
if (window.event) //IE
{
tecla = e.keyCode;
}
else if (e.which) //FF
{
tecla = e.which;
}
//tecla==8 é para permitir o backspace funcionar para apagar
if ((tecla >= 48 && tecla <= 57) || (tecla == 8)) {
return true;
}
else {
return false;
}
}
function validaNumero(evento) {
var tecla = event.keyCode;
if ((tecla == 44 || tecla == 46) || (tecla > 47 && tecla < 58)) // numeros de 0 a 9
return true;
else {
if (tecla != 8) // espaço
event.keyCode = 0; //return false;
else
return true;
}
}
function imprimePanel() {
var printContent = document.getElementById("ctl00_ContentCorpo_pnlImpressao");
var windowUrl = 'about:blank';
var uniqueName = new Date();
var windowName = 'Print' + uniqueName.getTime();
var printWindow = window.open(windowUrl, windowName, 'left=50000,top=50000,width=0,height=0');
printWindow.document.write(printContent.innerHTML);
printWindow.document.close();
printWindow.focus();
printWindow.print();
printWindow.close();
}
function validadadosTRT() {
var time_debut = document.getElementById("ctl00_ContentCorpo_Registro").value;
var time_debut2 = document.getElementById("ctl00_ContentCorpo_CNPJ").value;
var time_debut3 = document.getElementById("ctl00_ContentCorpo_CodigoAcesse").value;
if (time_debut.trim() == '' || time_debut2.trim() == ''|| time_debut3.trim() == '') {
exibir();
ocultarProc;
return false;
}
else {
exibirProc();
ocultar();
document.getElementById("form1").submit();
return true;
}
}
function exibir() {
document.getElementById("msgsu").style.display = "block";
}
function ocultar() {
document.getElementById("msgsu").style.display = "none";
}
function exibirProc() {
document.getElementById("frmTRT").style.display = "none";
document.getElementById("msgProcessando").style.display = "block";
}
function ocultarProc() {
document.getElementById("msgProcessando").style.display = "none";
document.getElementById("frmTRT").style.display = "block";
}
</script>]]>
|
580
| <![CDATA[<script>
function onSubmit(token) {
grecaptcha.execute();
//document.getElementById("form1").submit();
return true;
}
</script>]]>
|
1025
| <![CDATA[<script>
window.onload = function() {
const acceptedPrivacyPoliciesAndCookies = localStorage.getItem("acceptedPrivacyPoliciesAndCookies");
if (!acceptedPrivacyPoliciesAndCookies || acceptedPrivacyPoliciesAndCookies != 1) {
document.getElementById('politica-privacidade-section').classList.add('add');
if (window.matchMedia('(max-width: 769px)').matches) {
const politicaPrivacidadeHeight = document.getElementById('politica-privacidade-section').offsetHeight;
document.querySelector('.navbar-fixed-top').style.top = '${politicaPrivacidadeHeight}px';
document.querySelector('body').classList.add('show-politica-privacidade');
}
}else{
//document.getElementById('btn-policy').style.display = 'none';
//document.getElementById('politica-privacidade-button-container').style.display = 'none';
document.getElementById('btConc').style.display = 'none';
//document.getElementById('politica-privacidade-section').style.display = 'none';
}
}
window.acceptTerms = function() {
document.getElementById('btConc').style.display = 'none';
//document.getElementById('btn-policy').style.display = 'none';
//document.getElementById('politica-privacidade-button-container').style.display = 'none';
//document.getElementById('politica-privacidade-section').style.display = 'none';
localStorage.setItem('acceptedPrivacyPoliciesAndCookies', 1);
document.getElementById('politica-privacidade-section').classList.add('remove');
document.querySelector('body').classList.remove('show-politica-privacidade');
document.querySelector('.navbar-fixed-top').style.top = 0;
}
//window.acceptTerms = function() {
// wait4j(function() {
// $.ajax('/accept-policy').done(function(responseData) {
// if (responseData.status && responseData.status == "done" && responseData.acceptedCookies) {
// localStorage.setItem('acceptedPrivacyPoliciesAndCookies', 1);
// document.getElementById('politica-privacidade-section').classList.add('remove');
// document.querySelector('body').classList.remove('show-politica-privacidade');
// document.querySelector('.navbar-fixed-top').style.top = 0;
// }
// });
// });
//}
</script>]]>
|
1107
| <![CDATA[<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4979537-2', 'auto');
ga('send', 'pageview');
</script>]]>
|