how to perform click to the output of ActionLink by jQuery or javascript?
- by user324003
<%= Ajax.ActionLink("Edit", "Update", "Home", new { id = item.mID }, new AjaxOptions { OnBegin = "function(){ $('#edit" + item.mID + "').show();}", HttpMethod = "get", UpdateTargetId = "edit" + item.mID })%>
The above code generates the html source code. when user click the link, it works well. But there're so many links there, I must click…