Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

AttributeEquals(attribute, value) matches elements with the specified attribute

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("input[name='ab']").val("ab");                  });     </script>   </head>   <body>     <body>       <input name="ab" />     </body> </html>