encontré el siguiente código en el foro y tengo una consulta acerca de él.
Código Javascript
:
Ver original<script language="javascript">
function mensajes(){
var txthello="";
var now = new Date();
var day = now.getDay();
var hours = now.getHours();
//domingo
if(day == 0){
if ((hours>=0) && (hours< 6)) {txthello="domingo madrugada";}
else if ((hours>=6) && (hours< 20)) {txthello="domingo tarde";}
else if ((hours>=20) && (hours< 24)) {txthello="domingo noche";}
}
//martes
else if(day == 2){
if ((hours>=0) && (hours<6)) {txthello=" MARTES MADRUGADA";}
else if ((hours>=6) && (hours< 21)) {txthello=" MARTES DIA";}
else if ((hours>=21) && (hours< 24)) {txthello=" MARTES NOCHE";}
}
document.write(txthello + '<br/>');
}
mensajes();
</script>
quiero incluir la siguiente variable
Código Javascript
:
Ver originalvar minutes= now.getMinutes();
como podria hacer para incluirla en:
Código Javascript
:
Ver originalif ((hours>=0) && (hours< 6)) {txthello="domingo madrugada";}
para que pueda colocar el texto por ejemplo a las 12 y media
y lo otro es si hay alguna manera de llamar a mensajes(); o como puedo incluir el
Código Javascript
:
Ver originaldocument.write(txthello + '<br/>');
en una etiqueta h4 para incluirle css
desde ya muchas gracias