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