This Is Default
<p id="pp">
THIS DUDE IS HIDING
<script type="text/javascript" src="/Scripts/jquery-1.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#btn').click(function () {
$('#pp').hide('slow');
return false;
});
});
</script>
I am trying to hide a paragraph id=pp but on button click nothing happen, i also passed function name at button click but nothin happen.
Your code should work if your HTML structure is correct. E.g.:
Update It works fine as well with the HTML from your comment: