Seřadit podle abecedy?

Existuje nějáký html kód který umožní uspořádání (nejlépe odkazů) podle abecedy?
Předem děkuji!
Ne
Tak dík :-(
Vem si zdrojový kód toho HTML a seřaď to v nějakém textovém editoru (např. PSPad to umí docela dobře).
Nebo zavést PHP a generovat HTML už přímo seřazené.
Da sa to pomocou HTC.

NAPISES SUBOR HTC:

<public:attach event=oncontentready onevent="init();" />

<script>
//
// global variables
//
var tbody=null;
var theadrow=null;
var colCount = null;


var reverse = false;
var lastclick = -1; // stores the object of our last used object

var oTR = null;
var oStatus = null;
var none = 0;

function init() {

// get TBODY - take the first TBODY for the table to sort
tbody = element.tBodies(0);
if (!tbody) return;

//Get THEAD
var thead = element.tHead;
if (!thead) return;

theadrow = thead.children[0]; //Assume just one Head row
if (theadrow.tagName != "TR") return;

theadrow.runtimeStyle.cursor = "hand";

colCount = theadrow.children.length;

var l, clickCell;
for (var i=0; i<colCount; i++)
{
// Create our blank gif
l=document.createElement("SPAN");
l.innerHTML=" -";
l.id="srtImg";

clickCell = theadrow.children[i];
clickCell.selectIndex = i;
clickCell.insertAdjacentElement("beforeEnd", l)
clickCell.attachEvent("onclick", doClick);
}

}

//
// doClick handler
//
//
function doClick(e)
{
var clickObject = e.srcElement;

while ((clickObject.tagName != "TD") && (clickObject.tagName != "TH") )
{
clickObject = clickObject.parentElement;
}


// clear the sort images in the head
var imgcol= theadrow.all('srtimg');
for(var x = 0; x < imgcol.length; x++)
imgcol[x].innerHTML = " -";

if(lastclick == clickObject.selectIndex)
{
if(reverse == false)
{
clickObject.children[0].innerHTML = "▼";
reverse = true;
}
else
{
clickObject.children[0].innerHTML = "▲";
reverse = false;
}
}
else
{
reverse = false;
lastclick = clickObject.selectIndex;
clickObject.children[0].innerHTML = "▲";
}

insertionSort(tbody, tbody.rows.length-1, reverse, clickObject.selectIndex);
}

function insertionSort(t, iRowEnd, fReverse, iColumn)
{


var iRowInsertRow, iRowWalkRow, current, insert;
for ( iRowInsert = 0 + 1 ; iRowInsert <= iRowEnd ; iRowInsert++ )
{
if (iColumn) {
if( typeof(t.children[iRowInsert].children[iColumn]) != "undefined")
textRowInsert = t.children[iRowInsert].children[iColumn].innerText;
else
textRowInsert = "";
} else {
textRowInsert = t.children[iRowInsert].innerText;
}

for ( iRowWalk = 0; iRowWalk <= iRowInsert ; iRowWalk++ )
{
if (iColumn) {
if(typeof(t.children[iRowWalk].children[iColumn]) != "undefined")
textRowCurrent = t.children[iRowWalk].children[iColumn].innerText;
else
textRowCurrent = "";
} else {
textRowCurrent = t.children[iRowWalk].innerText;
}

//
// We save our values so we can manipulate the numbers for
// comparison
//
current = textRowCurrent;
insert = textRowInsert;


// If the value is not a number, we sort normally, else we evaluate
// the value to get a numeric representation
//
if ( !isNaN(current) || !isNaN(insert))
{
current= eval(current);
insert= eval(insert);
}
else
{
current = current.toLowerCase();
insert = insert.toLowerCase();
}


if ( ( (!fReverse && insert < current)
|| ( fReverse && insert > current) )
&& (iRowInsert != iRowWalk) )
{
eRowInsert = t.children[iRowInsert];
eRowWalk = t.children[iRowWalk];
t.insertBefore(eRowInsert, eRowWalk);
iRowWalk = iRowInsert; // done
}
}
}
}

</script>

A POTOM V HTML SI SPRAVIS TABULKU NAPRIKLAD:

<table id=MyTable style="behavior:url(sort.htc)"
BORDER="1" WIDTH="100%">
<thead>
<tr align="center">
<td>Adresa</td>
<td>Popis</td>
</tr>
</thead>
<tbody>
<tr>
<td>www.webzdarma.cz</td><td>WEB hosting</td>
</tr>
<tr>
<td>www.dsv.wz.cz</td><td>Druhá svetová vojna</td>
</tr>
</tbody>
</table>

POTOM PRI SLOVE ADRESA BUDE POMLCKA A KED NA NU KLIKNES TAK SA TI TO USPORIADA PODLA ABECEDY

POZRI NA ADRESE WWW.DSV.WZ.CZ/ABC.HTM
dobry ale skoda ze to maka jenom v IE
Dík moc!