Select elements by class name
Description
The following code shows how to select elements by class name.
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() {<!-- w ww . j a v a2 s . co m-->
$(".myClass").css("border", "3px solid red");
});
</script>
</head>
<body>
<div class="notMe">div</div>
<div class="myClass">div</div>
<span class="myClass">j av a2s.com</span>
</body>
</html>