214
| <![CDATA[<script type="text/javascript">
jQuery.noConflict();
(function( $ ) {
$(function() {
//Tooltips
var tip = null;
$(".tip_trigger").hover(function(){
//Caching the tooltip and removing it from container; then appending it to the body
tip = $(this).find('.tip_noticia').remove();
$('body').append(tip);
tip.show(); //Show tooltip
}, function() {
tip.hide().remove(); //Hide and remove tooltip appended to the body
$(this).append(tip); //Return the tooltip to its original position
}).mousemove(function(e) {
//console.log(e.pageX)
if ( tip == null ) return;
var mousex = e.pageX + 20; //Get X coodrinates
var mousey = e.pageY + 20; //Get Y coordinates
var tipWidth = tip.width(); //Find width of tooltip
var tipHeight = tip.height(); //Find height of tooltip
//Distance of element from the right edge of viewport
var tipVisX = $(window).width() - (mousex + tipWidth);
var tipVisY = $(window).height() - (mousey + tipHeight);
if ( tipVisX < 20 ) { //If tooltip exceeds the X coordinate of viewport
mousex = e.pageX - tipWidth - 20;
$(this).find('.tip').css({ top: mousey, left: mousex });
} if ( tipVisY < 20 ) { //If tooltip exceeds the Y coordinate of viewport
mousey = e.pageY - tipHeight - 20;
tip.css({ top: mousey, left: mousex });
} else {
tip.css({ top: mousey, left: mousex });
}
});
});
})(jQuery);
</script>]]>
|
347
| <![CDATA[<script type="text/javascript" language="javascript">
jQuery.noConflict();
(function( $ ) {
$(function() {
var button_my_button = "#myButton";
$(button_my_button).click(function(){
$.pageslide.close()
});
});
})(jQuery);
</script>]]>
|
412
| <![CDATA[<script>
jQuery.noConflict();
(function( $ ) {
$(function() {
var url = "https://www.setebarras.sp.gov.br//secretaria-municipal-de-sa-de-realiza-a-es-de-mobiliza-o-e-conscientiza-o-sobre-a-leishmaniose-visceral";
var text = "SECRETARIA MUNICIPAL DE SAÚDE REALIZA AÇÕES DE MOBILIZAÇÃO E CONSCIENTIZAÇÃO SOBRE A LEISHMANIOSE VISCERAL";
$("#shareIcons").jsSocials({
url: url,
text: text,
showLabel: false,
showCount: false,
shares: ["facebook", "whatsapp", "messenger", "twitter", "googleplus", "linkedin", "pinterest"]
});
});
})(jQuery);
</script>]]>
|
499
| <![CDATA[<script type="text/javascript">
displaylimit("document.comentario.coment",180)
</script>]]>
|
647
| <![CDATA[<script type="text/javascript">
jQuery.noConflict();
(function( $ ) {
$(function() {
/* Slide to the left, and make it model (you'll have to call $.pageslide.close() to close) */
$(".first").pageslide({ direction: "right", modal: true });
});
})(jQuery);
</script>]]>
|
659
| <![CDATA[<script type="text/javascript" language="javascript">
jQuery.noConflict();
(function( $ ) {
$(function() {
$('.fontesize').jfontsize({
btnMinusClasseId: '#jfontsize-m2',
btnDefaultClasseId: '#jfontsize-d2',
btnPlusClasseId: '#jfontsize-p2',
btnMinusMaxHits: 1,
btnPlusMaxHits: 2,
sizeChange: 2
});
});
})(jQuery);
</script>]]>
|
676
| <![CDATA[<script type="text/javascript">
function open_Imprimir(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
</script>]]>
|
681
| <![CDATA[<script type="text/javascript">
function open_Anexo(theURL,winName,features) {
window.open(theURL,winName,features);
</script>]]>
|