move li to bottom of list jquery selected value code example
Example 1: move li to bottom of list jquery selected value
$("li").click(function() {
$(this).parent().prepend($(this));
});
Example 2: move li to bottom of list jquery selected value
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>