Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following piece of code and the problem is that the callback from chrome.tabs.getSelected is evaluated after the request which is send with empty url. How can I solve this?

function send() {
var url = '';
chrome.tabs.getSelected(null, function(tab) {
    url = tab.url;
});

var client = new XMLHttpRequest();
client.onreadystatechange = function() {
    if(this.readyState == 4) {
        alert(this.status);
    }
}
client.open("POST", "http://myurl");
client.setRequestHeader("Content-Type", "text/plain;charset=UTF-8");

client.send(url);
}
share|improve this question

1 Answer

up vote 5 down vote accepted

Welcome to Asynchronous Programming

function send() {
    chrome.tabs.getSelected(null, function(tab) {
        var client = new XMLHttpRequest();
        client.onreadystatechange = function() {
            if(this.readyState == 4) {
                alert(this.status);
            }
        }
        client.open("POST", "http://myurl");
        client.setRequestHeader("Content-Type", "text/plain;charset=UTF-8");

        client.send(tab.url);
    });
}
share|improve this answer
Now I understand it. Thank you – Tomas Oct 5 '11 at 11:19
I have one more question. Is it possible to get tab's source code? I would like to send URL, HTML code of the whole page and a code snippet (user selects some text and that is send in the request). – Tomas Oct 5 '11 at 11:40
Yes. Since you have the tabId you can execute some script on it and do whatever you want. code.google.com/chrome/extensions/dev/… – cvsguimaraes Oct 5 '11 at 16:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.