Hides all the input elements within a form
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <style type="text/css"> .changeP { font-weight: bold; color:red;} </style> <script type="text/javascript"> $(document).ready(function(){ $(myForm.elements).hide() }); </script> </head> <body> <form id=myForm> <input type="radio" value="Option"> </form> </body> </html>