chiarissimo grazie! Ora non ho più bisogno del pediatra, la mia evoluzione si è compiuta correttamente.. ecco il codice funzionante
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
</head>
<body>
<script type="text/javascript">
var frame = 0;
function setWidth(id,width){
document.getElementById(id).width = width;
};
function allunga(id,massimo,tempo){
wait = (tempo/100);
mario = setInterval("frame++; setWidth('"+id+"',frame); if (frame == 100) { clearInterval(mario);};", wait);
};
</script>
<table id="pippo" bgcolor="#000099"><tr height="100"><td> </td></tr></table>
<script type="text/javascript">
allunga("pippo","100","1000");
</script>
</body>
</html>
Grazie ancora!!!