HTML Code:
function doTheTask() {
do_box = new vB_AJAX_Handler(true)
do_box.onreadystatechange(do_box_Done)
do_box.send('url','&var1=1&var2=2')
do_button = new vB_AJAX_Handler(true)
do_button.onreadystatechange(do_button_Done)
do_button.send('url')
}
function do_box_Done() {
if (do_box.handler.readyState == 4 && do_box.handler.status == 200) {
....
}
}
function do_button_Done() {
if (do_button.handler.readyState == 4 && do_button.handler.status == 200) {
....
}
}
I added this script but I have got this error message:
Quote:
Error: do_box is not defined
Line: if (do_box.handler.readyState == 4 && do_box.handler.status == 200) {
|
And this one
Quote:
Error: do_button is not defined
Line: if (do_button.handler.readyState == 4 && do_button.handler.status == 200) {
|
Anybody help me?