243
| <![CDATA[<script type="text/javascript">
$(document).ready(function(){
// ----- ERRO ------------------------------------------------------
var erro = '';
if (erro) {
$('#erro-box').html(erro).show();
}
// ----- PERCENTUAL FINANCIAMENTO ----------------------------------
var $percFin = $('#percentual_financiamento');
$('#bolsa_antecedente').change(function() {
var max = 100, //- ($(this).val() * 1),
prevVal = $percFin.val() * 1;
$percFin.html('');
$percFin.append($('<option/>').val('').html('Selecione'));
for (var i = 10; i <= max; i += 5) {
$percFin.append($('<option/>').val(i).html(i + '%'));
}
if (prevVal <= max) {
$percFin.val(prevVal);
}
});
$('#bolsa_antecedente').change();
// ----- MASCARAS --------------------------------------------------
$('#semestres_curso, #semestres_concluidos').setMask('99');
$('#valor_semestral').setMask({mask:'99,999.999',
type:'reverse',
defaultValue:''});
// ----- CURSO -----------------------------------------------------
var noCurso = '';
if (noCurso) {
$('#tr-curso-nome').html(noCurso);
$('#tr-curso').show();
}
var qtSemestres = '0' * 1;
if (qtSemestres > 0) {
$('#semestres_curso').val(qtSemestres);
}
// ----- VALIDAÇÃO -------------------------------------------------
$('#form-simulador').submit(function() {
var el;
// quantidade de semestre
el = $('#semestres_curso');
if ($.trim(el.val()).length == 0) {
alert('Indique a quantidade de semestres do seu curso.');
el.focus();
return false;
}
// semestres concluídos
el = $('#semestres_concluidos');
if ($.trim(el.val()).length == 0) {
alert('Indique a quantidade de semestres já concluídos.');
el.focus();
return false;
}
// tipo de estudante
el = $('#bolsa_antecedente');
if ($.trim(el.val()).length == 0) {
alert('Indique o tipo de estudante.');
el.focus();
return false;
}
// financiamento solicitado
el = $('#percentual_financiamento');
if ($.trim(el.val()).length == 0) {
alert('Indique o percentual de financiamento desejado.');
el.focus();
return false;
}
// valor semestral
el = $('#valor_semestral');
if ($.trim(el.val()).length == 0) {
alert('Indique o valor semestral de seu curso.');
el.focus();
return false;
}
// dia de vencimento
el = $('#dia_venciumento');
if ($.trim(el.val()).length == 0) {
alert('Indique o melhor dia de vencimento.');
el.focus();
return false;
}
return true;
});
$('#bt-simular').click(function() {
$('#form-simulador').submit();
});
});
</script>]]>
|