↧
Answer by Blazemonger for get multiple twitter feed with jquery
jQuery.getJSON("https://twitter.com/statuses/user_timeline/maxlibin.json?callback=?", function(data) { for (i = 0; i < 4; i++) { jQuery("#main .left").append(data[i].text); }; });...
View ArticleAnswer by gdoron for get multiple twitter feed with jquery
Each time you use html(...) You override anything inside the element. Extract all the data, then append it to the element: var output = ""; for (i=0; i<4; i++){ output += data[i].text; }...
View Articleget multiple twitter feed with jquery
i am trying to get twitter feed using jQuery json i can get the below code to work, if i don't use a for loop. can anyone guide me how can i get it work to get multiple tweets? while i try to use...
View Article