attributeMultiple(selector1, selector2, selectorN) matches elements with specified attribute
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("input[id][name$='m']").val("asdf"); }); </script> </head> <body> <body> <input id="a" name="m" /> </body> </html>