Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/09/2008, 10:29
[email protected]
 
Fecha de Ingreso: octubre-2005
Mensajes: 405
Antigüedad: 19 años, 2 meses
Puntos: 1
Agrandar texto

Lo que necesito es que al posicionarme sobre un link (onmouseover) me agrande el texto y al salir (onmouseout) vuelva a la normalidad.


<div id="grande" onmouseover="agrandar('grande','','fontSize','14', 'DIV')"><a href="#">texto</a></div>

function agrandar(objId,x,theProp,theValue) { //v9.0
var obj = null; with (document){ if (getElementById)
obj = getElementById(objId); }
if (obj){
if (theValue == true || theValue == false)
eval("obj.style."+theProp+"="+theValue);
else eval("obj.style."+theProp+"='"+theValue+"'");
}
}

pero no funciona alguien me podria ayudar