32
| <![CDATA[<script>
window.onload = function() {
window.micAccessTool = new MicAccessTool({
link: 'https://www.paranagua.pr.gov.br/conteudo/acessibilidade',
contact: 'mailto:webmaster@paranagua.pr.gov.br',
buttonPosition: 'left', // default is 'left'
});
}
</script>]]>
|
48
| <![CDATA[<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-5493006-1');
</script>]]>
|
71
| <![CDATA[<script type="text/javascript">
$( document ).ready( function () {
var list = $( ".list li" );
var numToShow = 10;
var button = $( "#next" );
var numInList = list.length;
list.hide();
if ( numInList > numToShow ) {
button.show();
}
list.slice( 0, numToShow ).show();
button.click( function () {
var showing = list.filter( ':visible' ).length;
list.slice( showing - 1, showing + numToShow ).fadeIn();
var nowShowing = list.filter( ':visible' ).length;
if ( nowShowing >= numInList ) {
button.hide();
}
} );
var list2 = $( ".list2 li" );
var numToShow2 = 4;
var button2 = $( "#next2" );
var numInList2 = list2.length;
list2.hide();
if ( numInList2 > numToShow2 ) {
button2.show();
}
list2.slice( 0, numToShow2 ).show();
button2.click( function () {
var showing = list2.filter( ':visible' ).length;
list2.slice( showing - 1, showing + numToShow2 ).fadeIn();
var nowShowing = list2.filter( ':visible' ).length;
if ( nowShowing >= numInList2 ) {
button2.hide();
}
} );
} );
</script>]]>
|