Pindahkan Li ke bawah daftar nilai yang dipilih

$("li").click(function() {
     
  $(this).parent().prepend($(this));
  
});
Expensive Eagle