It's really annoying what happens in MSIE v6.0. The captcha image doesn't want to reload through a javascript call.(link "Reload Captcha")
Just for your information, the file* which creates the image, sends the following header
header("Content-type: image/png");
*http://choringa.com.ar/ajaxform/simplec ... aptcha.php
I'd be grateful if anyone can give it a try with a newer version:
http://choringa.com.ar/ajaxform/formtest.php
Note that the form works as expected both in FF1.5 and Opera8.2
problem with ajax reloading an image
Moderator: General Moderators
- Buddha443556
- Forum Regular
- Posts: 873
- Joined: Fri Mar 19, 2004 1:51 pm
Re: problem with ajax reloading an image
You could debug this thing.julian_lp wrote:It's really annoying what happens in MSIE v6.0. The captcha image doesn't want to reload through a javascript call.(link "Reload Captcha")
Just for your information, the file* which creates the image, sends the following header
header("Content-type: image/png");
*http://choringa.com.ar/ajaxform/simplec ... aptcha.php
I'd be grateful if anyone can give it a try with a newer version:
http://choringa.com.ar/ajaxform/formtest.php
Note that the form works as expected both in FF1.5 and Opera8.2
See if on each of your javascript call...the php actually runs (using error_log level 3 for example). If not...then you need to add
header("Cache-Control: no-cache");
because IE likes to cache stuff.
Anyhow...it is good practice to do it everytime.