function move(element){ var width=0; function frame(){ width++; element.style.width=width+'px'; } var id=setInterval(frame,10); }