i am using a HTML table to show data, and i want that user can darg and dorp the table rows to sort the data as per there need. the HTML code for the table...
<table id='datagrid'>
<tbody>
<tr>
<td>1</td>
</tr>
<tr>
<td>2</td>
</tr>
<tr>
<td>3</td>
</tr>
</tbody>
</table>
i want that user can drag the rows and sort as per needed...in Javascript NOTE: Dont want answer using jQuery, Mootools or any other javascript library..because i want to use classic Javascript(i.e the core)..