una funzione che sto facendo mi da questo errore...
questo è il codice...
codice:
			v=".top";dS="document.getElementById(\"";sD="\").style";
y="window.pageYOffset";
object="divformatter";
ystart="80";

function checkLocation(){
	yy=eval(y);
	if (yy != ystart){
		eval(dS+object+sD+v+"="+(Math.round(ystart)+Math.round(yy))+"px;");
	}
setTimeout("checkLocation()",10);
}
mi da questo errore sull'eval...
però il testo esce giusto:
document.getElementById("formatter").style.top=80p x;

cosa può essere? :master: