Is it possible to select the last 5 child divs of an element?
Yes, you can get the div elements, and then use the slice method to get the last five:
slice
var e = $('#someelement > div').slice(-5);
2.1m questions
2.1m answers
60 comments
57.0k users