jQuery draggable table elements - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:50:21Z http://stackoverflow.com/feeds/question/307882 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/307882/jquery-draggable-table-elements 2 jQuery draggable table elements cdleary 2008-11-21T04:39:28Z 2008-11-21T07:48:10Z <p>jQuery's <code>draggable</code> functionality doesn't seem to work on tables (in FF3 or Safari). It's kind of difficult to envision how this <em>would</em> work, so it's not really surprising that it doesn't.</p> <pre><code>&lt;html&gt; &lt;style type='text/css'&gt; div.table { display: table; } div.row { display: table-row; } div.cell { display: table-cell; } &lt;/style&gt; &lt;script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt; &lt;script src="http://dev.jquery.com/view/tags/ui/latest/ui/ui.core.js"&gt;&lt;/script&gt; &lt;script src="http://dev.jquery.com/view/tags/ui/latest/ui/ui.draggable.js"&gt;&lt;/script&gt; &lt;script&gt; $(document).ready(function(){ $(".row").draggable(); }); &lt;/script&gt; &lt;body&gt; &lt;div class='table'&gt; &lt;div class='row'&gt; &lt;div class='cell'&gt;Foo&lt;/div&gt; &lt;div class='cell'&gt;Bar&lt;/div&gt; &lt;/div&gt; &lt;div class='row'&gt; &lt;div class='cell'&gt;Spam&lt;/div&gt; &lt;div class='cell'&gt;Eggs&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;table&gt; &lt;tr class'row'&gt;&lt;td&gt;Foo&lt;/td&gt;&lt;td&gt;Bar&lt;/td&gt;&lt;/tr&gt; &lt;tr class='row'&gt;&lt;td&gt;Spam&lt;/td&gt;&lt;td&gt;Eggs&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>I'm was wondering a) if there's any specific reason why this doesn't work (from a w3c/HTML spec perspective) and b) what the right way to go about getting draggable table rows is.</p> <p>I like real tables because of the border collapsing and row height algorithm -- any alternative that can do those things would work fine.</p> http://stackoverflow.com/questions/307882/jquery-draggable-table-elements/307926#307926 3 Answer by VonC for jQuery draggable table elements VonC 2008-11-21T05:08:32Z 2008-11-21T05:19:45Z <p>If you have truly tabular data, you should stick with table indeed.</p> <p>And if you want to drag rows <em>within</em> a table, this <strong><a href="http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/" rel="nofollow">JQuery + "draggable row table" library</a></strong> works perfectly in FireFox3</p>