I want the followers count from twitter site , Already I used this query, its worked well, but its not worked now,because the twitter API was changed now.i used script for getting count in a span id ="spnTwitterFolowersCount"
.
<script>
$.getJSON("https://twitter.com/users/Obama.json?callback=?",
function (data) {
document.getElementById("spnTwitterFolowersCount").innerHTML = data.followers_count;
//alert('Obama has ' + data.followers_count + ' Followers');
});
</script>