If has class : hasClass « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- hasClass
If has class
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div").append($("p:first").hasClass("selected").toString());
});
</script>
</head>
<body>
<body>
<p>A</p>
<div></div>
</body>
</html>
Related examples in the same category