Нет ни swapNode, ни moveRow как в MSDN.. :( Неужели нет способа ?

insertBefore

Примерная замена для swapNode.

Выделить код

Код:

function swapNodes(id1, id2)
{
	var n1, n2;
	if ( (n1 = document.getElementById(id1)) && (n2 = document.getElementById(id2)) )
	{
		var p1 = n1.parentNode, p2 = n2.parentNode, b = n2.nextSibling;
		p1.replaceChild(n2, n1);
		p2.insertBefore(n1, b);
	}
}
arka пишет

Примерная замена для swapNode.

Выделить код

Код:

function swapNodes(id1, id2)
{
	var n1, n2;
	if ( (n1 = document.getElementById(id1)) && (n2 = document.getElementById(id2)) )
	{
		var p1 = n1.parentNode, p2 = n2.parentNode, b = n2.nextSibling;
		p1.replaceChild(n2, n1);
		p2.insertBefore(n1, b);
	}
}

arka, спасибо !!