
24/10/2005, 21:29
|
 | | | Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 20 años, 2 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> |