$(document).ready(function(){
$('#data_nascimento').mask('00/00/0000');
$('#telefone_empresa').mask('00000-0000');
$('#numero_telefone').mask('00000-0000');
$('#cpf').mask('000.000.000-00');
$('#rg').mask('00.000.00-0');
})
function confirmacao()
{
return false
$.notify({
// options
message: 'Cadastro salvo com sucesso'
},{
// settings
type: 'sucess'
});
}
</script>
<script type="text/javascript">
var s3=0;
function somarValores(){
var s1 = document.getElementById("s1").value;
var s2 = document.getElementById("s2").value;
s3 = +s1 + +s2;
document.getElementById('resultado').value = s3;
//o alert aqui é só para testar a soma voces tem de colocar o valor na impressão do recibo.
}
</script>