Get and Set Element Width and Height

  1. //--- GET & SET ELEMENT'S WIDTH & HEIGHT    
  2.  // get element height    
  3.  var ElementHeight = $("#DivID").height();    
  4.     
  5.  // set element height    
  6.  $("#DivID").height(300);    
  7.     
  8.     
  9.  // get element width    
  10.  var ElementWidth = $("#DivID").width();    
  11.     
  12.  // set element width    
  13.  $("#DivID").width(600);