Переместите LI в нижнюю часть списка jQuery Выбранное значение
$("li").click(function() {
$(this).parent().prepend($(this));
});
Expensive Eagle
$("li").click(function() {
$(this).parent().prepend($(this));
});