jQuery의 eq(index)를 사용할 일이 생겨서 사용은 하고 있는데... e는 아무래도 element인것 같은데~ q는 수량의
stackoverflow.com/questions/15059207/what-does-eq-in-the-jquery-eq-method-stand-for
여기 사이트를 보고 알게되었다.
eq(index)의 equ는 element queue 구나~!
queue는 열, 대기열 차례 그런 뜻....
eq의 사용법과 뜻과 예제가 있는 아래의 사이트를 참고하세요~
www.w3schools.com/jquery/traversing_eq.asp
jQuery eq() Method
jQuery eq() Method ❮ jQuery Traversing Methods Example Select the second
element (index number 1): $("p").eq(1).css("background-color", "yellow"); Try it Yourself » Definition and Usage The eq() method returns an element with a specific index number
www.w3schools.com
.eq() | jQuery API Documentation
Description: Reduce the set of matched elements to the one at the specified index. Given a jQuery object that represents a set of DOM elements, the .eq() method constructs a new jQuery object from one element within that set. The supplied index identifies
api.jquery.com