Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/04/2011, 14:21
ionutz15
 
Fecha de Ingreso: febrero-2011
Mensajes: 49
Antigüedad: 13 años, 2 meses
Puntos: 2
Agregar un script

Hola,utilizo joomla 1.6 y me gustaria agregar un script a mi web.

Este script se encarga de poner un texto que se "desliza" en la pestaña del explorador.
Dejo el script por si acaso:
Código:
<SCRIPT LANGUAGE="JavaScript">
var txt="Aqui el texto";
var espera=100;
var refresco=null;
function rotulo_title() {
        document.title=txt;
        txt=txt.substring(1,txt.length)+txt.charAt(0);
        refresco=setTimeout("rotulo_title()",espera);}
rotulo_title();
</SCRIPT>
Bien,como dije antes utilizo j. 1.6...y no tengo mucha ideea.Gracias