Claro que no funciona. En la parte del codigo:
Código:
<script type="text/javascript">
var contador = 10;
setInterval("div_crece()",1000);
function div_crece()
{
document.getElementById('crecer').style.width = contador.toString();
contador += 10;
if(contador == 600)
contador=10;
}
</script>
--------------------------
<body>
<div>
<div id="crecer" style="width:10px; background-color:red"> </div>
</div>
</body>
Deberia quedar asi:
Código:
<script type="text/javascript">
var contador = 10;
setInterval("div_crece()",1000);
function div_crece()
{
document.getElementById('crecer').style.width = contador.toString() + "px";
contador += 10;
if(contador == 600)
contador=10;
}
</script>
--------------------------
<body>
<div>
<div id="crecer" style="width:10px; background-color:red"> </div>
</div>
</body>
De todas formas, gracias por esa respuesta, es algo que intento hacer desde hace tiempo y no sabia como, Gracias:)