I need to request a twitter search with jquery using twitter api. After read documentation I write this code:
$.getJSON(\"http://search.twitter.com/search.
Just to add a bit more to the answer you can use the following code to display text within each returned tweet.
$.getJSON("http://search.twitter.com/search.json?callback=?&q=stackoverflow",
function(data){
for (i=0; iText: " + data.results[i].text + "
" + "Created at: " + data.results[i].created_at +"
");
}
});
Then within your body html put the following div