Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Having trouble closing my BlockUI dialog. I've implemented several of these using the same technique but this one just doesn't seem to fire the click event for some reason:

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
  ...
  <script src="jquery.blockUI.js" type="text/javascript"></script>
  ...
</asp:Content> 

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

  ...

  <div id="dialogUnpaidLandlord" style="display: none">
    <div style="cursor: default; padding: 1em; font-family: arial; font-size: 0.9em; text-align: left; line-height: 1.5em">
      <div style="font-size: 1.5em; margin-bottom: 1em; font-family: arial;"blah blah...</div>

      <div style="text-align: right; padding-bottom: 1em;">
        <span id="spnLNoThanks" class="notnowthanks" style="margin-right: 1em">
          not now thanks
        </span>
        <span class="divbutton" style="margin-right: 1em">
          <asp:HyperLink ID="HyperLink1" runat="server" style="text-decoration: none; color: white" NavigateUrl="~/ss.aspx">pay now</asp:HyperLink>
        </span>
      </div>
      </div>
  </div>


    <script type="text/javascript">
    $('.notnowthanks').click(function() {
      $.unblockUI();
      return false;
      });


    </script>

</asp:Content> 

Any Ideas?

share|improve this question
are you checked. that your function is triggered or not ? place alert under $('.notnowthanks').click(function() { – chhameed Oct 1 '11 at 8:02
Yes tried this - it isn't – Chris Oct 6 '11 at 20:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.