↧
Answer by ryan for Twitter feed using jQuery
Your code wasn't using JSONP and therefore being denied by cross domain restrictions. I've modified the request and it works now. Here's the code and here's the fiddle$(document).ready(function () {...
View ArticleTwitter feed using jQuery
I'm trying to make a twitter feed that shows 5 tweets by using jQuery to parse a JSON file, provided by twitter. I've made jsFiddle over here.$(document).ready(function () { var k =...
View Article