"content"
из <meta property="og:image" content="http://site.ru">
из внешней страницы? function getContent(){
var http = new XMLHttpRequest();
http.open('GET', 'https://twitter.com/navalny'); // URL страницы сайта
http.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
var doc = new DOMParser().parseFromString(this.responseText, "text/html"); // преобразовать текст в HTML
document.write(doc)
}
}
http.send(null);
}