Select input by name
Description
The following code shows how to
select input element by name
attribute.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!-- ww w. jav a 2 s .c o m-->
$("input[name='ab']").val("ab");
$("input[name!='me']").next().text(" changed");
});
</script>
</head>
<body>
<input name="ab" />
<input name="me" />
</body>
</html>