Assuming HTML like this:
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
So if "Two" is clicked, move it to the top of the list.
$("li").click(function() {
$(this).parent().prepend($(this));
});
Will work for multiple lists...
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন