Imagine I have a table with more than 9 rows.
If I do this : $('table tr:gt(3):lt(6)')
, shall I receive 3 or 6 elements at the end, and why ? Are all selectors applied to the same primary selection, or are they successively applied on different selections ?