Skip to content

Instantly share code, notes, and snippets.

@egm0121
Created January 9, 2013 09:24
Show Gist options
  • Select an option

  • Save egm0121/4491817 to your computer and use it in GitHub Desktop.

Select an option

Save egm0121/4491817 to your computer and use it in GitHub Desktop.
jsonP Twitter Search Example
(function (q) {
window.a = function (d) {
while (d.results.length) document.body.innerHTML += '<li>' + d.results.pop().text;
};
var js = document.createElement('script'),
first = document.getElementsByTagName('script')[0];
js.src = 'http://search.twitter.com/search.json?q=' + q + '&callback=a';
first.parentNode.insertBefore(js, first);
})('upcloo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment