diff -r f00d45c03421 sites/all/modules/contrib/jquery_update/replace/tabledrag.js
--- a/sites/all/modules/contrib/jquery_update/replace/tabledrag.js	Wed Aug 25 12:37:07 2010 -0400
+++ b/sites/all/modules/contrib/jquery_update/replace/tabledrag.js	Wed Aug 25 16:09:32 2010 -0400
@@ -86,7 +86,7 @@
 
   // Hide columns containing affected form elements.
   this.hideColumns();
-
+  
   // Add mouse bindings to the document. The self variable is passed along
   // as event handlers do not have direct access to the tableDrag object.
   $(document).bind('mousemove', function(event) { return self.dragRow(event, self); });
@@ -169,8 +169,9 @@
   // Create the handle.
   var handle = $('<a href="#" class="tabledrag-handle"><div class="handle">&nbsp;</div></a>').attr('title', Drupal.t('Drag to re-order'));
   // Insert the handle after indentations (if any).
-  if ($('td:first .indentation:last', item).after(handle).size()) {
+  if ($('td:first .indentation:last', item).length) {
     // Update the total width of indentation in this entire table.
+    $('td:first .indentation:last', item).after(handle);
     self.indentCount = Math.max($('.indentation', item).size(), self.indentCount);
   }
   else {
