Select button elements and input elements with type=”button”
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="lib/jquery/jquery-1.3.2.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$(":button").css("background-color", "red");
});
</script>
</head>
<body>
<form action="">
Name: <input type="text" name="user" />
<br/>
Password: <input type="password"
name="password" />
<br/>
<button type="button">
Useless Button
</button>
<input type="button" value="Another useless button" />
<br/>
<input type="reset" value="Reset" /><input type="submit" value="Submit" />
<br/>
</form>
</body>
</html>
Comments
Post a Comment