Code:
<input type='button' id='rate-it' value='rates-it' >
<script type='text/javascript'>
$("#rate-it").click(function () {
alert('yes');
});
</script>
when i check the error console it says
$("#rate-it") is null .. whts the problem?
Comment