remove character from html elements
$(function(){
setTimeout( function(){
$('#social-stream li.dcsns-linkedin span.twitter-user strong:contains("Â")').each(function(){
console.log('aaa');
$(this).html($(this).html().split("Â").join(""));
});
} , 3000 );
});