Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/05/2005, 04:55
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 22 años, 9 meses
Puntos: 381
Vale, lo haces con un link, entonces es aún más facil (creí que usabas otro elemento)

entonces podrías hacer algo así

Podrías definir un array con los links que quieras

Código:
<script type="text/javascript">
var enlacillos = new Array('links-1.html','links-2.html')
var cont = 0
function cambia(cual){
   if(cont < enlacillos.length-1){
       cont++
       cual.href = enlacillos[cont]
   }
}
</script>
Y a tu link ponerle algo tipo...

<a href="links-1.html" target="cajita" onclick="cambia(this)"> enlacillo </a>

Cita:
Iniciado por Isabel_Maria
Gusto en saludarte de nuevo.
Lo mismo digo

yá me contarás si te sirvió