Select all a elements with an href attribute that ends with “.org”:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="lib/jquery/jquery-1.3.2.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$("a:[href$=.org]").css("background-color", "red");
});
</script>
</head>
<body>
<a href="http://www.w3schools.com">w3schools.com</a><br/>
<a href="http://www.google.com">Google.com</a><br/>
<a href="http://www.wikipedia.org">wikipedia.org</a>
</body>
</html>
Comments
Post a Comment