Calling jquery function from asp.net OnClientClick
what do I put inside the asp button's OnClientClick to call my jquery function?
Also,I still want my button handler in asp.net to function
- $('#btnNewBlock').click(function () {
- $('#pnlBuildBlockInsert').show()
- });
- <asp:Button ID="btnNewBlock" runat="server" Text="New Block" Visible="true" OnClientClick="????" />