Try the following: http://jsfiddle.net/6JtMp/
Here is the code:
<style> #draggable { width: 150px; height: 150px; padding: 0.5em; background-color: green; } </style> <script> $(function() { $( "#draggable" ).draggable({ start: function(event, ui) { $(this).css("height",10); }, stop: function(event, ui) { $(this).css("height",150); } }); }); </script> <div class="demo"> <div id="draggable" class="ui-widget-content"> <p>Drag me around</p> </div> </div>
source share