I am very new in jquery. I want to sorting on table i will explain the scenarios I have HTML Table where has 4 columns, Documents, Language, Date, Format. Now want to sort the first column Document and within document sort by Language when page is loaded Can anyone help me on this?
this is the HTML
<table id="Sorting">
<tbody>
<tr>
<td>Documents</td>
<td>Language</td>
<td>Date</td>
<td>Format</td>
</tr>
<tr>
<td>Document1</td>
<td>English</td>
<td>01/01/2012</td>
<td>PDF</td>
</tr>
<tr>
<td>Document2</td>
<td>French</td>
<td>01/01/2012</td>
<td>PDF</td>
</tr>
<tr>
<td>Document3</td>
<td>Dutch</td>
<td>01/01/2012</td>
<td>PDF</td>
</tr>
<tr>
<td>PDFDoc1</td>
<td>German</td>
<td>01/12/2012</td>
<td>XSL</td>
</tr>
<tr>
<td>PDFDoc2</td>
<td>English</td>
<td>01/01/2012</td>
<td>PDF</td>
</tr>
<tr>
<td>PDFDoc3</td>
<td>Norwegian</td>
<td>01/01/2012</td>
<td>PDF</td>
</tr>
<tr>
<td>Document4</td>
<td>Spanish</td>
<td>01/01/2012</td>
<td>PDF</td>
</tr>
<tr>
<td>Document5</td>
<td>Dutch</td>
<td>01/01/2012</td>
<td>PDF</td>
</tr>
</tbody>
</table>