How do I get a website title (anything in between the title tags) using only the URL (without the tab). I am attempting this: http://code.google.com/chrome/extensions/xhr.html but am unsure of the implementation/if it can even work.
Here's what I have:
var xhr = new XMLHttpRequest();
xhr.open("GET", info.linkUrl, true);
xhr.onreadystatechange = function(data) {
alert((/<title>(.*?)<\/title>/m).exec(data)[1]);
callback(data);
}
xhr.send();
My permissions are set, but nothing is happening.
edit: now how do I return it? here is my attempt:
var xhr = new XMLHttpRequest();
xhr.open("GET", info.linkUrl, true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
var title = (/<title>(.*?)<\/title>/m).exec(xhr.responseText)[1];
results.push({
title: title
});
//callback(title);
}
xhr.processed = true;
xhr.abort();
}
try {
xhr.send();
} catch(e) {
//do something
}
what now?