1. Description 매칭된 Element들 중에서 index보다 작은 Element들을 찾는다. 처음부터 찾기 시작하는 index는 0부터 시작하고, 마지막부터 찾기 시작하는 index는 -1부터 시작한다. jQuery 3.4버전부터 Deprecated되었습니다. 대신 .slice()를 사용하세요. jQuery(":lt(index)") : 첫 번째 Element부터 찾기 시작하고, 첫 번째 index는 0이다. jQuery(":lt(-index)") : 마지막 Element부터 찾기 시작하고, 첫 번째 index는 -1이다. 2. Example