Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Match all of the specified attribute filters

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