22
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136072104-1');
</script>]]>
|
49
| <![CDATA[<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:1941341,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>]]>
|
440
| <![CDATA[<script type="text/javascript">
function navigateTo(sel, target, newWindow) {
var url = sel.options[sel.selectedIndex].value;
if (newWindow) {
window.open(url, target);
} else {
window[target].location.href = url;
}
}
</script>]]>
|
504
| <![CDATA[<script type="text/javascript">
var alturaConteudo = document.querySelector(".conteudo-2").clientHeight;
console.log(alturaConteudo);
var largura = document.body.clientWidth;
if (largura > 1200) {
document.querySelector('.area-menu-orgao').style.height = alturaConteudo + 'px';
}
</script>]]>
|
514
| <![CDATA[<script>
$(function(){
// bind change event to select
$('#dynamic_select').on('change', function () {
var url = $(this).val(); // get selected value
if (url) { // require a URL
window.location = url; // redirect
}
return false;
});
});
</script>]]>
|