I am trying to invoke a jquery function when a client press the image button, below is the code:
<asp:ImageButton ID="startUploadLink" runat="server"
onclick="startUploadLink_Click" />
$("#startUploadLink").click(function () {
$('#<%=FileUpload1.ClientID%>').uploadifyUpload();
return false;
});
want to invoke the above function when a user click on image button , also want some code behind logic of onclick image button should work in conjuction with the jquery function, is there any way of achieving it. Any help or suggestions will be highly appreciated.