Jan Hančič má pravdu:nejlepší je použít XMLHttpRequest.
Zde je příklad:
var xhr = new XMLHttpRequest();
xhr.open("post", "http://ex.ample.com/file.php", true);
xhr.onreadystatechange = function() {
if(this.readyState == 4) {
// Do something with this.responseText
}
}
xhr.send("var1=val1&var2=val2");
Na webu je spousta návodů a referencí o AJAXu a objektu xhr.