Ahoj, muzete zkontrolovat moji implementaci razeni sloupcu v tabulce? Je to spravne implementovany bubble sort?
Vim ze tam chybi detekce typu sloupce, o tu mi ted nejde
var table = document.getElementById('id_tbody_tabulky');
for(q=0;q<table.rows.length-1;q++){
var swp = table.rows[q].innerHTML
if(table.rows[q].cells[this.cellIndex].innerHTML < table.rows[q+1].cells[this.cellIndex].innerHTML) {
table.rows[q].innerHTML = table.rows[q+1].innerHTML;
table.rows[q+1].innerHTML = swp;
q=-1;}
}