note that i'm using asp.net with vb.net
jquery:
$("#create")
.button().click(function () {
$("#dialog-form").dialog("open");
});
$("#LinkButton3").click(function () {
$("#dialog-form").dialog("open");
return false;
});
asp:
<asp:TemplateField HeaderText="Edit">
<ItemTemplate>
<asp:LinkButton ID="LinkButton3" runat="server">LinkButton</asp:LinkButton>
<a href="#" class="table-actions-button ic-table-edit" id="create"></a>
</ItemTemplate>
</asp:TemplateField>
the dialog opens for the a tag but does not open for the linkbutton can anyone tell me why my code is not working?