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 need to build a list using the parameters "name" taken from my file "sendjson.php" (in json, of course). How can i create a list using jQuery like this one?

<div id="firstresultname">Firstresultname</div>
<div id="secondresultname">Secondresultname</div>

I don't know how much result will be so is possible to detect and write the right number on div? Thanks!

share|improve this question
6  
please define "list". please show sendjson.php. – citizen conn Jul 20 '11 at 21:33
can you tell where you are having the problem? specify the json response you are getting and how you want to get it displayed... – 3nigma Jul 20 '11 at 21:34
Can you post your JSON? – bcoughlan Jul 20 '11 at 21:36
For list i mean a series of elements ... this is an example of the result fom sendjson.php: {"items":[{"name":"iPod Shuffle"},{"name":"Nintendo Wi"}]} - i need to show one result for each div. using the example i posted in json, it should become <div>iPod shuffle</div> <div>Nintendo Wii</div> – Matteo Mosconi Jul 20 '11 at 21:38

1 Answer

up vote 7 down vote accepted
$.each(json, function(key, value){
    $("body").append('<div id="'+value+'">'+value+'</div>');
});

or just

$.each(json, function(key, value){
    $("body").append('<div>'+value+'</div>');
});

to retreive json & proccess, do following

$.ajax({
    'url' : 'yoururl.php',
    dataType: 'json',
    success: function(json){
        $.each(json, function(key, value){
            $("body").append('<div>'+value+'</div>');
        });
    }
});
share|improve this answer
2  
+1 for quicker fingers – Joe Jul 20 '11 at 21:43
Thanks a lot! How i should do to retrive the json code and pass it to this part of code? – Matteo Mosconi Jul 20 '11 at 21:47
1  
@Matteo: Answer edited – genesis Jul 20 '11 at 21:49
success: function(json){ – 3nigma Jul 20 '11 at 21:51
Thank you so much. – Matteo Mosconi Jul 20 '11 at 21:52
show 2 more comments

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.