How can I select all textboxes and textareas, e.g:
and
Simply use $(":input")
$(":input")
Example disabling all inputs (textarea, input text, etc):
$(":input").prop("disabled", true);
Tetarea Checkbox