Hola que tal.
Tengo un pequeño script que es un fotoslider, en firefox se ve bien pero en internet explorer aunque el funcionamiento es correcto cuando muestra la ultima foto que he añadido al fotoslider muestra un cuadro como una foto o cargada,esto en forefox no pasa y al llegar a la ultima foto simplemente se queda en esa ultima unque sigmos pulsando en siguiente foto,puesto que es la ultima que hay.
Quisiera saber si se puede modificar algo para que en internet explorer salga igual y no marque como una foto no cargada al llegar al final,gracias posteo el codigo.
<img src="MOTO-SUZUKI-INTRUDER-C-800.jpg" width="380" height="230" name="photoslider">
<form method="POST" name="rotater">
<div align="center"><p><script language="JavaScript1.2">
var photos=new Array()
var which=0
/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="MOTO-SUZUKI-INTRUDER-C-800.jpg"
photos[1]="MOTO-SUZUKI-INTRUDER-C-8001.jpg"
photos[2]="MOTO-SUZUKI-INTRUDER-C-8002.jpg"
photos[3]="MOTO-SUZUKI-INTRUDER-C-8003.jpg"
photos[4]="MOTO-SUZUKI-INTRUDER-C-8004.jpg"
function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}
function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='End of gallery'
}
</script>
<input type="button" style="border: #000 1px solid; background-color: #FF9900" value="Anterior" value="<<Atrás" name="B2"
onClick="backward()">
<input type="button" style="border: #000 1px solid; background-color: #FF9900" value="Siguiente Foto" name="B1"
onClick="forward()"><br>
</div>
</form>