Problem in handling events in jQuery

Problem in handling events in jQuery

Recently i am trying event handling using jQuery and found a problem in implementing the following jQuery code. The problem is when i click the "Hide" button, the disclaimer text which i have in my html page, does not disappear as it is supposed to according to the code. I have attached the jQuery code and the html text below. Please guide me solving this problem as i am new to jQuery. Thanks in advance.
  1. $('#hideButton').click
    (
        function()
        {
            $('#disclaimer').hide();
        }
    );





  2. All Rights Reserved. No part of this website can be copied, replicated, published or stored in any electronic media without the prior written permission of the authors.