Search code examples
jqueryelementskip

jQuery skip first 3 elements and the last one


I want to use unwrap but skip from applying this to the first 3 elements and from the last one also.. How can I do this? This is what I tried:

$(".top_link:gt(3)").not(":last").unwrap();

It doesn't seem to work.. What can I do? Thank you for any idea..


Solution

  • try this

    $(".top_link:gt(2):not(:last)").unwrap();