93
| <![CDATA[<script type="text/javascript">
//check telefone agendar
function agendar_telefone_empty() {
var x;
x = document.getElementById("telefone").value;
if (x.length < 8) {
alert("Por favor, informe um telefone válido.");
return false;
};
}
//focus hello
//window.onload = function auto_focus(){
function auto_focus(){
$('html, body').animate({scrollTop:$('.td-page-header').position().top}, 0);
}
//alterar cor de input para cinza se valor = 0
function n_vagas_zero_cinza(input){
if(input.value==0){
input.style.color = "#ccc";
}
else{
input.style.color = "blue";
}
}
//mostrar relogio
hora = 08;
minuto = 04;
segundo = 06;
function atualizarRelogio(){
str_segundo = new String (segundo);
if (str_segundo.length == 1) str_segundo = "0" + segundo;
str_minuto = new String (minuto);
if (str_minuto.length == 1) str_minuto = "0" + minuto;
str_hora = new String (hora);
if (str_hora.length == 1) str_hora = "0" + hora;
horaImprimible = str_hora + ":" + str_minuto + ":" + str_segundo;
$("#relogio_menu").text(horaImprimible);
setTimeout("atualizarRelogio()",1000);
segundo = segundo+1;
if(segundo>=60) {segundo = 0; minuto=minuto+1;}
if(minuto>=60) {minuto=0; hora=hora+1;}
if(hora>=24) hora=0;
}
window.onload = function(){
//auto_focus();
atualizarRelogio();
}
</script>]]>
|