Description: Matches elements that match all of the specified attribute filters.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>css demo</title> <script src="//code.jquery.com/jquery-1.10.2.js"></script> </head> <body> <input id="man-news" name="man-news"> <input name="milkman"> <input id="letterman" name="new-letterman"> <input name="newmilk"> <script> $( "input[id][name$='man']" ).val( "only this one" ); </script> </body> </html>