Quote:
Originally Posted by prithagupta
Yes i know ajax but can you tell me how to do it??
|
first,you need to create ajax engine:var xmlHttp = new XMLHttpRequest();it depends on your browser.
second:xmlHttp.open("get",url,true);
xmlHttp.send(null)
xmlHttp.onreadystatechange = callback;
function callback(){
if(xmlHttp.readyState == 4){ document.getElementById("id").innerHTML = xmlHttp.responseText;
}
}
actually,you can google or baidu,there are many things what you want