Yes, i.e. You can use jQuery Load, and once you have load the external page, extract just what you want with a selector for the specific info.
jQuery load external site page
i.e.
$('#myEl').load('remotePageUrl #remotepageIDselector');
Where myEl is an element in your page, remotePageUrl is the external site, and remotepageIDselector is the id of the element that contains the info that you want, you can use any selector.
Update:
@user2768038, I have to go man, but the following code snippet should work, what happens is that you are doing a cross domain call, the previous answer works for your own domain, but the following code should work:
$.getJSON('http://anyorigin.com/get?url=youtube.com/watch?v=lrC2alc_eko&callback=?', function(data){
var valueToFind;
$.each($(data.contents), function(i, el) {
// if we have the value scape ffrom the cicle
if(valueToFind && typeof valueToFind !== undefined) {
// alert the requested value
alert(valueToFind);
return false;
}
// search for the element in the current dom section
valueToFind = $(el).find('.watch-view-count').html();
});
});
But this is really something:
1- Expensive you're doing a full request to a page,
2- Expensive you're traversing the full DOM tree multiple times.
3- Not safe because the external site owner can change the code anytime.
Also my solution is far away from optimum, I'll update the post later night, but this should work locally at least in Firefox, and crossbrowser once you publish your code to a server.