Jan Hančič đúng:cách tốt nhất là sử dụng XMLHttpRequest.
Đây là một ví dụ:
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");
Có rất nhiều hướng dẫn và tài liệu tham khảo trên web về AJAX và đối tượng xhr.