JQuery JavaScript Tutorial





  jQuery UI Resizable - Animate
  
  
  
  
  
  
  #resizable { width: 150px; height: 150px; padding: 0.5em; }
  #resizable h3 { text-align: center; margin: 0; }
  .ui-resizable-helper { border: 1px dotted gray; }
  
  
  $(function() {
    $("#resizable").resizable({
      animate: true
    });
  });
  



  

  Animate



Animate the resize action using the animate option (boolean). When this option is set to true, drag the outline to the desired location; the element animates to that size on drag stop.