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 set up a pylons server to accept requests of the form "/searcher?q=blahblah". This returns some nice json of the form:

[{"name":"onefish","type":"one"},{"name":"twofish",type:"two"}]

I get this using the javascript:

function search() {
   var query = $('#search_box').val();
   $.getJSON('/searcher',
      {
         q: query
      },
      function(data) {
         $.each(data,function(index,element) {
            $(body).append($('<div>',{text: element.name}));
         }
      }
   );
}

This successfully queries the server when called and it is called (the server gives response code 200). However, the code does not add anything to the body. The same nothing happens when I replace $(body).append(...); with something like $('#some_id').html(...);. Is there something wrong with my query, my parsing, or my output?

share|improve this question
erm...stackoverflow deleted the element... – astex Jan 23 at 16:24
what happens if you use data[0].name and no loop, just as a test, and did you console log the object and see that result in the console, so you're sure that's the returned result ? – adeneo Jan 23 at 16:27
there is a new error in the console: "body is not defined" – astex Jan 23 at 16:30
because it needs to be in quotes. stupid question. – astex Jan 23 at 16:31
Just delete the question, or accept your own answer. – adeneo Jan 23 at 16:34
show 2 more comments

1 Answer

up vote 0 down vote accepted

I solved this myself. body needs to be in quotes...

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.