I'm working on an MVC 3 application and am using the Ajax.ActionLink helper to create an ajax link. I'm trying to implement a Like/Unlike feature similar to Facebook. So when the user clicks 'Like', the link should be changed to 'Unlike', etc. Here are my Ajax.ActionLink code for both links:
//Like link
@Ajax.ActionLink("Like", "Like", "MyController", new { @id = Model.ID }, new AjaxOptions
{
HttpMethod = "POST",
InsertionMode = InsertionMode.Replace,
OnFailure = "failError();",
OnSuccess = "changeLikeLink('" + @Model.ID + "_like_link');",
UpdateTargetId = (Model.ID + "_likes")
}, new { @id = (Model.ID + "_like_link") })
//Unlike link
@Ajax.ActionLink("Unlike", "Unlike", "MyController", new { @id = Model.ID }, new AjaxOptions
{
HttpMethod = "POST",
InsertionMode = InsertionMode.Replace,
OnFailure = "failError();",
OnSuccess = "changeUnlikeLink('" + @Model.ID + "_unlike_link');",
UpdateTargetId = (Model.ID + "_likes")
}, new { @id = (Model.ID + "_unlike_link") })
My jQuery code looks like this (I'm using two separate functions as I'm just trying to get it working for now and am still learning jQuery):
function changeLikeLink(linkID) {
var theLink = '#' + linkID;
$(theLink).html('Unlike'); // Change the link text
var newHREF = $(theLink).attr('href').replace("Like", "Unlike");
$(theLink).attr("href", newHREF); // Change the href
var newID = $(theLink).attr('id').replace('like', 'unlike');
$(theLink).attr('id', newID); // Change the link ID
$('#' + newID).attr('data-ajax-success', 'changeUnlikeLink(' + newID + ');'); // Change the onSuccess function
}
I have a similar function that changes the Unlike link to a Like link along with some additional things.
This kind of works. When I click the unlike link, my action completes successfully and the link is changed to the Like link. I can then click on the Like link, and the action will complete successfully again, but this time the link doesn't change. I know the jQuery is working because I can refresh the page, click the Like link, and it changes to an Unlike link the way it is supposed to. It just doesn't change on a second Ajax call.
Is there something I'm missing? Am I even going about this the right way?