Jquery click event

Posted by ram on Stack Overflow See other posts from Stack Overflow or by ram
Published on 2010-03-27T12:00:02Z Indexed on 2010/03/27 12:03 UTC
Read the original article Hit count: 200

Filed under:

This is my code

$(document).ready(function () {
            $("#Button1").click(showDialog);
        });

var showDialog = function () {
       /* Something I do here */
}

Here the "Button1" click event fire at first time, after that the event was not firing.

Thanks, Ram

© Stack Overflow or respective owner

Related posts about jquery-selectors