Hide all the input elements within a form in jQuery

Description

The following code shows how to hide all the input elements within a form.

Example


<!--from www .  j a va2 s. c om-->
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(myForm.elements).hide()
});
</script>
</head>
<body>
<form id='myForm'>
<input type="radio" name="newsletter" value="Hot Fuzz">adf</input>
</form>
</body>
</html>

Click to view the demo

The code above generates the following result.

Hide all the input elements within a form in jQuery
Home »
  Javascript Tutorial »
    jQuery »
      jQuery Form
...
Change the button text with replaceWith met...
Check the check box in jQuery
Click the button to enable the input next t...
Create a button clone and insert it after t...
Disable buttons whose index is greater than...
Fire focus event in jQuery
Get input text from Text Box in jQuery
Get multiple selected value in jQuery
Get selected items from form select control...
Get single selected value from select in jQ...
Get text from button and set the value to i...
Get text value from a button and set it to ...
Get the input value of the first matched se...
Get value for each form element in jQuery
Handle focus event fired when an element re...
Handle form input Text box selected event i...
Handle form input Text input change event i...
Handle form inut key up event in jQuery
Hide all the input elements within a form i...
Invoke Submit Event in jQuery
Make a form input text element editable and...
Pre-select multiple select option in jQuery
Pre-select options in form select element i...
Preselect checkbox in jQuery
Preset form radio button in jQuery
Select all selected items from form select ...
Select checkbox from a list of form control...
Select checked checkbox in jQuery
Select disabled button and get the its next...
Select form button and check element list l...
Select form file input field in jQuery
Select form image control in jQuery
Select form input text in jQuery
Select form password field in jQuery
Select form radio button in jQuery
Select hidden form fields in jQuery
Select reset button from form in jQuery
Select submit button in jQuery
...