If I select some elements by using $('#elem1, #elem2, #elem3') etc but the order in the DOM is elem1, elem3, elem2
Then .eq(1) will return #elem3, I thought the index would relate to the order in the selectors.
Just wanted to make sure this is right so I can re-work my code.