JQuery JavaScript Tutorial





  jQuery UI Resizable - Maximum / minimum size
  
  
  
  
  
  
  #resizable { width: 200px; height: 150px; padding: 5px; }
  #resizable h3 { text-align: center; margin: 0; }
  
  
  $(function() {
    $("#resizable").resizable({
      maxHeight: 250,
      maxWidth: 350,
      minHeight: 150,
      minWidth: 200
    });
  });
  



  

  Resize larger / smaller



Limit the resizable element to a maximum or minimum height or width using the maxHeightmaxWidthminHeight, and minWidth options.