I was learning jQuery basics. Below is a simple alert box, but it won't work. Please help me.
I have a with id="btn1"
<script type="text/javascript" >
$(document).ready(function()
{$("#btn1").click(function()
{
alert("55");
}}
));
</script>
Please tell me what is wrong with the script.