consegui un codigo javascript que cambia las imagenes cada 5 segundos e intente adaptarlo a mis necesidades, pero no tengo la menor idea de como hacer que javascript muestre el link <a....... /a>
el codigo que consegui es el siguiente:
Código:
alguien puede ayudar a resolver este pequeño problema ? pase toda la tarde de hoy buscando en google y no logre conseguir nada que me ayudara.<script type="text/javascript"> $(function(){ var dataArray=new Array(); dataArray[0]="<a link and image from amazon />"; dataArray[1]="<a link and image from amazon />"; dataArray[2]="<a link and image from amazon />"; dataArray[3]="<a link and image from amazon />"; //start with id=0 after 5 seconds var thisId=0; window.setInterval(function(){ (aqui debe ir el codigo para mostrar la variable dataArray respectiva) thisId++; //increment data array id if (thisId==3) thisId=0; //repeat from start },5000); }); </script>
gracias por su ayuda y colaboracion, saludos.