JQuery index and selectors :lt and :gt?

The issue is that jQuery runs its selectors sequentially, rather than compiling them into one selector. So :gt(3):lt(2) means "find all the elements in the set with an index of more than 3, then, in the returned set, find all elements with an index less than 2". Turning it round td:lt(2):gt(3) changes the order of the logic, so gives a different result.

The indexes are re-indexed after a first filtering, this is sequential.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions