Função para apresentar elementos (show e hide). Faz reset na selecção de radio buttons, checkbox e faz clear a campos de texto e coloca o valor por defeito
window.SantanderReset = function() {
//Apresenta novamente o ínicio
$('#bbo-sms-app-skin .bbo-fill-data').show();
$('#bbo-sms-app-skin .bbo-title').show();
$('#bbo-sms-app-skin .bbo-descr').show();
$('#bbo-sms-app-skin .bbo-fill-data-result').hide();
//Faz reset a selecção das radio buttons
$("input[value='ios']").prop('checked', false);
$("input[value='android']").prop('checked', false);
// Faz reset a selecção das Checkbox
$("input[value='Autorizo']").prop('checked', false);
//Faz clear ao campo de texto e mantém o value por defeito
$('.input-phone').each(function () {
$(this).val("Nº de telemóvel");
});
};