It looks like this might be the problem:
Code:
if (ajax_req.readyState == 4 || ajax_req.readyState == 0) {
try this:
Code:
if (ajax_req.readyState == 4 && ajax_req.status == 200) {
you'll have to move the ajax_req.open to before that if block
Last edited by psychopsi; 03-01-2007 at 03:16 AM..
|