Hello.
There is a table:
<table> <tr> <td> Обьем </td> <td> 175 </td> </tr> <tr> <td> Расход </td> <td> 3л </td> </tr> ... </table> How can I sort the list by the first letter of the words "Volume" , "Expense" and display it?
Hello.
There is a table:
<table> <tr> <td> Обьем </td> <td> 175 </td> </tr> <tr> <td> Расход </td> <td> 3л </td> </tr> ... </table> How can I sort the list by the first letter of the words "Volume" , "Expense" and display it?
One of the simplest solutions is a jquery plugin (less than 2 KB) https://github.com/joequery/Stupid-Table-Plugin
Source: https://ru.stackoverflow.com/questions/636063/
All Articles