i have found lots of example to create a button without postback. However, all fail in my case, so can you check it?
<asp:Button ID="btnNew" CssClass="btnNew btn" runat="server" Text="New" OnClientClick="showDiv(); return false;" />
<button id="btnNew" class="btnNew " onclick="showDiv();">New</button>
//jQuery function => $("#btn").Click();
For this button, i won't use it in server, so it should be a pure html button..
Can anyone tell me what's wrong of above code?