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 have a page with multiple forms that do the same thing, acting as a like button for each post in the page, and right next to it the number of likes inside a div named "likes".$id, so I can identify where to write the likes count after the ajax call. I was trying to use jQuery ajax function, but I couldn't set what div to write the results of the function.

$.ajax({
  type:'POST', 
  url: 'likepost.php', 
  data:$('#like').serialize(), 
  success: function(response) {
    $('#like').find('#likediv').html(response);
  }
});

And how would I access the data on likepost.php? I am terrible with javascript, so I hope someone could help me and explain how the jQuery function really works, because I've been copying and pasting it without really knowing what I was doing.

Would this work?

    $(function () {

    $("#likebutton").click(function () {

            var id = $('input[name=id]'); // this is me trying to get a form value

        $.ajax({
           type: "POST",
           url: "likepost.php",
           data: $("#like"+id).serialize(), // the form is called like+id e.g. like12
           success: function(data){

                 $("#likes"+id).html(data); // write results to e.g. <div id='likes12'>

               }
         });            
    });
});

I put this in the code but when the button is clicked, the usual post refreshing page is done. Why is that?

share|improve this question
Took the liberty of formatting the code for you. Posting it in one unformatted line can make it tricky to parse and read, and some people won't bother. You might also want to consider upping your accept rate. – Greg Pettit Jul 7 '12 at 4:24
@GregPettit, Smart tips! – Marcio Simao Jul 7 '12 at 4:26
Would be useful if you show the HTML code of at least one DIV named ` "likes".$id` – Marcio Simao Jul 7 '12 at 4:28
Sorry about that, I know nothing about javascript, that said, I know nothing about the convention of how to indent it. This post has an id of 143 and has 2 likes: <div id='likes143'>2</div> – Lucas Corrêa Feijó Jul 7 '12 at 5:07
Let me reformulate my question: how can I access a value passed by the form inside the ajax function? That way I would concatenate "likes"+id and set what I want (the div to write). – Lucas Corrêa Feijó Jul 7 '12 at 5:23

2 Answers

Making a mini-form, serializing it, and POSTing it seems like a lot of heavy lifting when all you really want to do is send the ID to the likepost.php script.

Why not just retrieve the ID and post it to the script?

share|improve this answer
How would I do that? – Lucas Corrêa Feijó Jul 7 '12 at 5:10

First let's break down your function:Type is the type of the request we're making, you specified POST here. This means in your PHP file you'll access the data we're sending using $_POST. Next up is URL which is just the url of where you're sending the data, your php file in this case.

After that is data, that is the data we're sending to the url (likepost.php). You're serializing whatever has a ID of "like" and sending it to the php file. Finally success is a function to run once the request is successful, we get a response back from the PHP and use it in the function to output the response.

As for the multiple forms I'd recommend doing something like: http://www.kavoir.com/2009/01/php-checkbox-array-in-form-handling-multiple-checkbox-values-in-an-array.html

Here's documentation on the stuff we talked about, if you're every confused about jquery just break it down and search each part.

http://api.jquery.com/serialize/

http://api.jquery.com/jQuery.ajax/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.