jQuery accepts a wide variety of parameters, and one of them is an actual DOM element. Passing a DOM element to jQuery will cause the underlying array-like structure of the jQuery object to hold that element.
jQuery will detect that the argument is a DOM element by inspecting its nodeType.
The mos...