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);
1.4m articles
1.4m replys
5 comments
57.0k users