I have a Master Page and a Content Page(SomePage.aspx). The Content page has a control called Button1.
I am calling the Button1 using jQuery in MasterPage like this
$('[id$=Button1]').click(function() {
alert('');
});
However nothing happens. I have added MasterType in SomePage.aspx.
The Button is a linkbutton.
Any suggestions?