Select input elements with type=”image”
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="lib/jquery/jquery-1.3.2.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$(":image").css("background-color", "red");
});
</script>
</head>
<body>
<form action="">
Name: <input type="text" name="user" />
<br/>
Password: <input type="password"
name="password" />
<br/>
Compatible: <input type="image" src="compatible_ie.gif" width="31"
height="30" />
</form>
</body>
</html>
Comments
Post a Comment