Posts: 487
Name: Mark Stegeman
Location: Netherlands, Europe
|
var ajaxReq = false; in a function, would declare a local variable, only available to that function.
So you either have to remove the var keyword, or pass the variable along with calling the next function.
And ajaxReq.open(); takes three arguments:
- method
- file
- asynchronous (true/false)
__________________
<?php ($helpfull>0)?$talkupation++ : '';?>
Last edited by Insensus; 01-25-2009 at 02:14 PM..
|