আমার পঠিত ব্লগ সমুহ

বৃহস্পতিবার, ৭ জুন, ২০১২

Move Clicked List Items To Top Of List


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...

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন