Originally posted by pbmods
Code:
function nutherFunction(theButton) {
str = "moreStuff.php?button="+theButton;
// add line here
var http = getHTTPObject();
//
http.open("GET", str, true);
http.onreadystatechange = handleHttpResponse;
http.send(null);
}
Comment