Hola bathorz, gracias por el código último que pusiste, pero lo probé y no me funcionó... Estos días seguí buscando y di con otro, pero no hace del todo lo que yo quiero, lo hace según las horas del días pero no según los días de la semana....
Te dejo el código por si me pudieras echar un cable, lo agradecería mucho....
Gracias de antemano crack....
Te dejo el texto que encontré....
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> var d = new Date();
var hour = d.getHours();
var min = d.getMinutes();
var ruta = '';
var texto = '';
jQuery(document).ready(function(){
setInterval('cambiarImagen()',1000);
cambiarImagen();
});
function cambiarImagen(){
d = new Date();
hour = d.getHours();
min = d.getMinutes();
sec = d.getSeconds();
switch(hour){
case 17 : if (((min >= 00) && (min < 59))){
ruta = 'RUTA DE LA IMAGEN';
texto = 'RUTA DEL TEXTO';
}
break;
}
jQuery('#imagen').attr('src',ruta);
jQuery('#txt').html(texto)
}
<img id="imagen" src="" />