hello i am new to jquery can any one please tell me what's wrong with my code
<html>
<head>
<title>jQuery Hello World</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<script type="text/javascript">
$("input[@name='chkBox']").click(function(){
if ($("#chkBox"]:checked").val() == 'a')
// Code for handling value 'a'
{
$("#msgid").html("This is Hello World by JQuery");
}
});
</script>
<body>
<input type="radio" name="chkBox" id="chkBox" value="a" />
<div id="msgid">
</div>
</body>