Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/02/2011, 15:09
walterdevel
 
Fecha de Ingreso: diciembre-2010
Mensajes: 788
Antigüedad: 13 años, 4 meses
Puntos: 51
Respuesta: Agrandar caja con un click

Te paso tu función modificada:

Código Javascript:
Ver original
  1. window.onload=function(){
  2. var x = 20;
  3. var box=document.createElement("div");
  4. box.style.top="50px";
  5. box.style.left="50px";
  6. box.style.width = x+"px";
  7. box.style.height = x+"px";
  8. box.style.backgroundColor = "blue";
  9. box.style.position = "absolute";
  10. box.addEventListener("click", function(evt){
  11.     this.style.width = '200px';
  12.     this.style.height = '200px';
  13. }, false);
  14. document.body.appendChild(box);
  15. }