51
| <![CDATA[<style>
.divgrande{
line-height: 100%;
margin: 0 auto;
width: 840px;
padding: 10px;
display: table;
}
.divinterna{
width: 200px;
height: 280px;
padding: 5px;
float: left;
margin: 0 auto;
text-align: center;
}
.titulo_boletim{
padding: 0 24px;
}
</style>]]>
|
2
| <![CDATA[<script language="javascript">
// valida e-mail
function Valida_mail(campo,div) {
if (document.getElementById(campo).value != "") {
if (document.getElementById(campo).value.search(/^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$/) == -1) {
if(div){
document.getElementById(div).innerHTML = "<img src='https://www.cremesp.org.br/Templates/v200901/images/ico_correto.gif'>";
}
document.getElementById(campo).style.borderColor = "#FF0000";
document.getElementById(campo).style.backgroundImage = "none";
return false;
} else {
if(div){
document.getElementById(div).innerHTML = "<img src='https://www.cremesp.org.br/Templates/v200901/images/ico_correto.gif'>";
}
document.getElementById(campo).style.borderColor = "#7BB33A";
document.getElementById(campo).style.backgroundImage = "url(Templates/v200901/images/ico_correto.gif)";
document.getElementById(campo).style.backgroundRepeat="no-repeat";
document.getElementById(campo).style.backgroundPosition="center right";
document.getElementById(campo).style.paddingRight="15px";
return true;
}
} else {
if(div){
document.getElementById(div).innerHTML = "";
}
document.getElementById(campo).style.borderColor = "#CCCCCC";
document.getElementById(campo).style.backgroundImage = "none";
return false;
}
}
</script>]]>
|
37
| <![CDATA[<script language='JavaScript'>
function SomenteNumero(e){
var tecla=(window.event)?event.keyCode:e.which;
if((tecla > 47 && tecla < 58)) return true;
else{
if (tecla != 8 && tecla!=0) return false;
else return true;
}
}
//exemplo de uso
//<input type='text' onkeypress='return SomenteNumero(event)'>
</script>]]>
|
75
| <![CDATA[<script type="text/javascript">
//mapeamento do google não remover
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23291907-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
//-----------------------------------------------------------
</script>]]>
|
89
| <![CDATA[<script type="text/javascript">
//mapeamento do google GA4
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'G-DJ0N9KCXK3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>]]>
|