49
| <![CDATA[<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v2.12';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
function shareOnFB(){
var url = "https://www.facebook.com/sharer/sharer.php?u=http://www.camarademagalhaesdealmeida.ma.gov.br/noticias/noticias/exibe/0020844-mais-de-13-milhoes-de-familias-podem-sacar-o-bolsa-familia-a-partir-desta-quarta-feira-12&t=Título";
window.open(url, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');
return false;
}
function shareOntwitter(){
var url = 'https://twitter.com/intent/tweet?url=URL_HERE&via=getboldify&text=yourtext';
TwitterWindow = window.open(url, 'TwitterWindow',width=600,height=300);
return false;
}
function shareOnGoogle(){
var url = "https://plus.google.com/share?url=https://yoururl.com";
window.open(url, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=350,width=480');
return false;
}
/*var backButtonPressed = false;
if (window.history && window.history.pushState) {
window.history.pushState('forward', null, '.');
$(window).on('popstate', function () {
backButtonPressed = true;
});
}
$(document).ready(function(){
/!* Get iframe src attribute value i.e. YouTube video url
and store it in a variable *!/
var url = $("#frameVideo").attr('src');
/!* Remove iframe src attribute on page load to
prevent autoplay in background *!/
$("#frameVideo").attr('src', '');
/!* Assign the initially stored url back to the iframe src
attribute when modal is displayed *!/
$("#videoModal").on('shown.bs.modal', function(){
$("#frameVideo").attr('src', url);
});
/!* Assign empty url value to the iframe src attribute when
modal hide, which stop the video playing *!/
$("#videoModal").on('hide.bs.modal', function(){
$("#frameVideo").attr('src', '');
});
if (backButtonPressed == true) {
//$("#frameVideo").attr('src', '');
$(".frameVideo")[0].src += "&autoplay=1";
}
});*/
</script>]]>
|
871
| <![CDATA[<script>
let lgpdHtml = `
<div class="lgpd">
<div class="text">
<h6>O site usa cookies e tecnologias semelhantes para melhorar a sua experiência de navegação, assim como providenciar alguns recursos essenciais. Ao continuar em nosso site, você concorda com a nossa Política de Cookies, Privacidade e Termos de Uso.</h6>
</div>
<div class="options">
<div class="button-clear lgpd-button">
<a href="https://www.portofranco.ma.gov.br/politicaprivacidade/politicaprivacidade">
<span>Ver termos</span> </a>
</div>
<div class="lgpd-button">
<button type="button" id="aceitar-termos">
<span>Concordar e continuar</span>
</button>
</div>
</div>
</div>
`;
let lsContent = sessionStorage.getItem('lgpd');
if (!lsContent) {
document.body.innerHTML += lgpdHtml;
let lgpdArea = document.querySelector('.lgpd');
let lgpdButton = lgpdArea.querySelector('button');
lgpdButton.addEventListener('click', async () => {
lgpdArea.remove();
if (JSON.error != '') {
let id = '1';
sessionStorage.setItem('lgpd', id);
}
});
}
</script>]]>
|
913
| <![CDATA[<script>
$(document).ready(function () {
$('#frmFaleConosco')
.bootstrapValidator({
message: 'Este campo não pode ser vasio',
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
caxEmail: {
validators: {
notEmpty: {
message: 'Informe um e-mail'
}
}
},
caxNome: {
validators: {
notEmpty: {
message: 'Informe seu nome completo'
},
stringLength: {
min: 10,
max: 100,
message: 'O nome tem que pelo pelo ao menos 10 caracteres'
},
regexp: {
regexp: /^[a-zA-Z0-9 ]+$/,
message: 'Só pode conter letras e números'
}
}
},
caxMensagem: {
validators: {
notEmpty: {
message: 'Escreva uma mensagem'
},
stringLength: {
min: 20,
max: 1000,
message: 'Tem que possuir pelo ao menos 10 caracteres'
}
}
},
caxCaptcha: {
validators: {
notEmpty: {
message: 'Informe o código abaixo'
},
stringLength: {
min: 6,
max: 6,
message: 'O captcha tem que ter 6 dígitos'
},
regexp: {
regexp: /^[0-9]+$/,
message: 'Só pode conter números'
}
}
},
caxCelular: {
validators: {
notEmpty: {
message: 'Informe o celular'
},
stringLength: {
min: 11,
max: 11,
message: 'O celular tem que ter no máximo 11 dígitos incluído o DDD'
},
regexp: {
regexp: /^[0-9]+$/,
message: 'Só pode conter números'
}
}
},
cboAssunto: {
validators: {
notEmpty: {
message: 'Selecione o assunto'
}
}
}
}
})
$('#frmNewsletter')
.bootstrapValidator({
message: 'Este campo não pode ser vasio',
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
caxEmail: {
validators: {
notEmpty: {
message: 'Informe um e-mail'
}
}
},
caxNome: {
validators: {
notEmpty: {
message: 'Informe seu nome completo'
},
stringLength: {
min: 10,
max: 100,
message: 'O nome tem que pelo pelo ao menos 10 caracteres'
},
regexp: {
regexp: /^[a-zA-Z0-9 ]+$/,
message: 'Só pode conter letras e números'
}
}
},
caxCaptcha: {
validators: {
notEmpty: {
message: 'Informe o código abaixo'
},
stringLength: {
min: 6,
max: 6,
message: 'O captcha tem que ter 6 dígitos'
},
regexp: {
regexp: /^[0-9]+$/,
message: 'Só pode conter números'
}
}
},
caxCelular: {
validators: {
stringLength: {
min: 11,
max: 11,
message: 'O celular tem que ter no máximo 11 dígitos incluído o DDD'
},
regexp: {
regexp: /^[0-9]+$/,
message: 'Só pode conter números'
}
}
}
}
})
});
</script>]]>
|
1080
| <![CDATA[<script type="text/javascript">
$(document).ready(function () {
$('.carousel-secretarios').owlCarousel({
loop: true,
dots: true,
margin: 10,
autoplay: true,
autoplayTimeout: 5000,
slideBy: 4,
responsiveClass: true,
responsive: {
0: {
items: 1,
nav: true,
dots: true,
loop: true
},
600: {
items: 3,
dots: true,
loop: true
},
1000: {
items: 4,
dots: true,
loop: true
}
}
});
$('.carousel-tvprefeitura').owlCarousel({
loop: true,
dots: true,
margin: 10,
autoplay: true,
autoplayTimeout: 5000,
slideBy: 3,
responsiveClass: true,
mouseDrag: true,
touchDrag: true,
responsive: {
0: {
items: 1,
nav: true,
dots: true,
mouseDrag: true,
touchDrag: true,
loop: true
},
600: {
items: 2,
dots: true,
mouseDrag: true,
touchDrag: true,
loop: true
},
1000: {
items: 3,
dots: true,
mouseDrag: true,
touchDrag: true,
loop: true
}
}
});
});
</script>]]>
|
1150
| <![CDATA[<script>(function(d){var s = d.createElement("script");s.setAttribute("data-account", "FQxOaHJ4IP");s.setAttribute("src", "https://cdn.userway.org/widget.js");(d.body || d.head).appendChild(s);})(document)</script>]]>
|