Skip to content

Instantly share code, notes, and snippets.

@marshall007
Created January 4, 2012 19:03
Show Gist options
  • Select an option

  • Save marshall007/1561486 to your computer and use it in GitHub Desktop.

Select an option

Save marshall007/1561486 to your computer and use it in GitHub Desktop.
Draggable Table Test
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="https://raw.github.com/isocra/TableDnD/5c362af5ecc7c83db83ac786d3cb6bc545e81686/js/jquery.tablednd.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#ppCart").tableDnD({});
});
</script>
</head>
<body>
<table cellpadding="0" id="ppCart" class="ppCart">
<tbody>
<tr rev="b9c3c6a6-2ceb-4c96-bd87-b2e85e0c4584" rel="19149" class="first">
<td class="ppCartPosSort"><div></div></td>
<td class="ppCartPosIndex"><div>1</div></td>
<td class="ppCartProduct"><div>726 TDE</div></td>
<td rel="10612" class="ppCartPrice"><div>$<input type="text" value="1198" class="text"></div></td>
<td rel="10611" class="ppCartFinance"><div>Sale Price Only</div></td>
<td class="ppCartRemove"><div><a href="#">Remove</a></div></td>
</tr>
<tr rev="bcd15adb-da75-46a0-863a-45a7989010d2" rel="19162" class="zebra">
<td class="ppCartPosSort"><div></div></td>
<td class="ppCartPosIndex"><div>2</div></td>
<td class="ppCartProduct"><div>LTX 1042</div></td>
<td rel="10638" class="ppCartPrice"><div>$<input type="text" value="1549" class="text"></div></td>
<td rel="10637" class="ppCartFinance"><div>Sale Price Only</div></td>
<td class="ppCartRemove"><div><a href="#">Remove</a></div></td>
</tr>
<tr rev="42a9cad1-c9fa-42ba-889e-da4ccabbd65a" rel="19157">
<td class="ppCartPosSort"><div></div></td>
<td class="ppCartPosIndex"><div>3</div></td>
<td class="ppCartProduct"><div>GT 1554</div></td>
<td rel="10628" class="ppCartPrice"><div>$<input type="text" value="2999" class="text"></div></td>
<td rel="10627" class="ppCartFinance"><div>Sale Price Only</div></td>
<td class="ppCartRemove"><div><a href="#">Remove</a></div></td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment