Home >Web Front-end >JS Tutorial >jquery gets element index value index() example_jquery
jquery gets the element index value index() method:
jquery’s index() method searches for matching elements and returns the index value of the corresponding element, counting from 0.
If no parameters are passed to the .index() method, the return value is the position of the first element in this collection of jQuery objects relative to its sibling elements.
If the parameter is a set of DOM elements or jQuery objects, the return value is the position of the passed element relative to the original set.
If the parameter is a selector, the return value is the position of the original element relative to the element matched by the selector. If no matching element is found, -1 is returned.