jQuery select all except first or a specific one
Use jquery's selector and related methods to select all elements but not include the first (or a specific one) element. There are several ways.
:not and :first selector
The jquery api about :not selector 和 :first selector.
:eq selector
The jquery api about :eq selector
not method
The jquery api about not function.
:gt selector
The jquery api about gt selector.
slice method
The jquery api about slice method.