I wonder why people seems to prefer :input over input as a jQuery selector? Basically, this two lines seem to do the same thing :
:input
input
$(\'i
:input selects all input, textarea, select and button elements, while input just selects elements with an input tag.