Last active
June 26, 2016 21:41
-
-
Save lcomino/1221105 to your computer and use it in GitHub Desktop.
Search Twitter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$.ajax({ | |
url: "http://search.twitter.com/search.json?q=javascript", | |
dataType: "jsonp", | |
success: function(data){ | |
console.log('SUCESSO'); | |
console.log(data); | |
}, | |
error : function(a , b){ | |
console.log('ERROO'); | |
console.log(a, b); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment