for some reason only the asp.net hyperlink is not workin with jquery. Any suggestions?
<asp:HyperLink runat="server" ID="hypeDeleteBaseline" Text="Delete Baseline" /> <br/>
//Delete Baseline information
jQuery('[id$="hypeDeleteBaseline"]').click(function (e) {
e.preventDefault();
var equipid = "<%=Equipment.ID%>";
var inspectionid = jQuery('[id$="ddInspectionDate"]').val();
deleteBaseline(equipid, inspectionid);
});
Thanks for any help.