16
| <![CDATA[<script type="application/json" class="joomla-script-options new">{"csrf.token":"aa2ef0ef1663c6d2046b6e302c4407c9","system.paths":{"root":"","base":""}}</script>]]>
|
26
| <![CDATA[<script type="text/javascript">
jQuery(function($) {
$('.hasTip').each(function() {
var title = $(this).attr('title');
if (title) {
var parts = title.split('::', 2);
var mtelement = document.id(this);
mtelement.store('tip:title', parts[0]);
mtelement.store('tip:text', parts[1]);
}
});
var JTooltips = new Tips($('.hasTip').get(), {"maxTitleChars": 50,"fixed": false});
});
jQuery(window).on('load', function() {
new JCaption('img.caption');
});
</script>]]>
|
52
| <![CDATA[<script type='text/javascript'>var tgs = new Array('div','p','tr','td','table','ul','ol','li'); </script>]]>
|
52
| <![CDATA[<script type='text/javascript'>init_common_datos(12,30,6,"px",1);</script>]]>
|
52
| <![CDATA[<script type='text/javascript'>init_individual_datos(1);</script>]]>
|
74
| <![CDATA[<script>
jQuery(function ($) {
$('#nome').addClass("capitalise");
$("#celular").mask("(99) 99999-9999");
});
</script>]]>
|
82
| <![CDATA[<script type="text/javascript">
function CheckAndSubmit () {
var nome = document.getElementById ("nome");
var x=document.getElementById ("email").value;
var atpos=x.indexOf("@");
var dotpos=x.lastIndexOf(".");
if (nome.value.length < 6) {
alert ("O nome deve ter pelo menos 6 caracteres !");
nome.focus();
return false;
}
if (celular.value.length < 15) {
alert ("O telefone deve ter 15 caracteres.\n\rExemplo: (99) 99999-9999");
celular.focus();
return false;
}
if (atpos<1 || dotpos<atpos+2 || dotpos+2>=x.length){
alert("Não é um endereço de e- mail válido");
email.focus();
return false;
}
return true;
}
</script>]]>
|