Quantcast
Channel: get multiple twitter feed with jquery - Stack Overflow
Browsing index pages (3 articles)

get 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


Answer 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 Article


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 Article
Browsing index pages (3 articles)


Latest Images