I have the ul. Now I have to remove all the li elements inside it except first and last li. How can I do it through JQuery. Tried remove method but could not find a way.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To remove from all ul-s on the page the li-s that are neither the first nor the last:
Or using a specific id:
If you have a jQuery object with your ul in it:
|
||||
|
|
|
Have you tried selecting all the list elements, and then removing the first and last ones from the list?
|
|||
|
|
This will remove all items from list Except/Exclude first and last element, To remove all items from any list
|
|||
|
|