Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/10/2005, 21:29
Avatar de programeitor
programeitor
 
Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 19 años, 3 meses
Puntos: 9
<input type="button" value=" + " onclick="
obj=document.getElementById('span');
if(!obj.n){obj.n=16}else{obj.n+=5};
obj.style.fontSize=obj.n+'px';
">
<input type="button" value=" - " onclick="
obj=document.getElementById('span');
if(!obj.n||obj.n<16){obj.n=16}else{obj.n-=5};
obj.style.fontSize=obj.n+'px';
">
<br>
<span id="span">el texto</span>