Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Why are you replacing the ID? Why not just create the like/unlike feature like a toggle? That would be much easier to maintain. – Brian Mains Sep 24 '12 at 16:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.