38
| <![CDATA[<script type="text/javascript">
$(document).ready( function(){
var buttons = { previous:$('#jslidernews2 .button-previous') ,
next:$('#jslidernews2 .button-next') };
$('#jslidernews2').lofJSidernews( { interval:5000,
easing:'easeInOutQuad',
duration:1200,
auto:true,
mainWidth:684,
mainHeight:300,
navigatorHeight: 100,
navigatorWidth: 310,
maxItemDisplay:3,
buttons:buttons } );
});
</script>]]>
|
640
| <![CDATA[<script>
$(".texto").change(function(){
$(this).val($(this).val().toUpperCase());
});
$("#telefone, #celular").mask("(00) 0000-0000");
$("#cep").mask("00.000-000");
var options = { onKeyPress: function (cpf, ev, el, op) {
var masks = ['000.000.000-000', '00.000.000/0000-00'];
$('#cpfcnpj').mask((cpf.length > 14) ? masks[1] : masks[0], op); }}
$('#cpfcnpj').length > 11 ? $('#cpfcnpj').mask('00.000.000/0000-00', options) : $('#cpfcnpj').mask('000.000.000-00#', options);
</script>]]>
|