When I try to include social media scripts into my page, I get the \"pending\" status in Chrome on some computers (not all of them):
Sometimes the script takes more time in loading while the system has moved on. so make sure you wait for get to give you response before you manipulate it. so rather then doing following
var temp;
$.get('path/to/filename.ext',function(data){
temp = data;
}
//use temp
do this
var temp;
$.get('path/to/filename.ext',function(data){
temp = data;
//use temp
}