how can I move element to end but keep the variable updated without traversing again?
var pbUL = $('ul');
var pbLIs = $('li');
pbLIs.eq(0).appendTo(pbUL);
pbLIs = $('li'); // not good...
simple problem - probably simple soluction, but I have no Idea how to solve...