「a」タグのクリック関数にクラスを追加したいのですが、タグに最も近いdivのクラスが「jitender」の場合はwanaアラートです。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
$(function () {
$(".Cmnew").find("a").click(function () {
$(this).addClass("jitender");
if($(".Cmnew").closest("a").className() == "jitender") {
alert("helllo")
}
})
})
</script>
</head>
<body>
<div class="Cmnew">
<a href="#">first</a>
<a href="#">second</a>
</div>
</body>