I have a weird problem when sending parameters through an ajax call (jQuery1.4), but only with IE. I also tried it without jQuery, and wrote my own xmlhttp request, but I still get the same results.
When I send variables like this:
var1 = value1, var2 = value2, var3 = value3, var4 = value4
They are all passed to ajax query as a data property, and sent to the server. However, random parameters are missing in random places. For example, the PHP Server only receives:
var1 = value1, var3 = value3, var4 = value4
The passed values are URL encoded and contain normal short text strings. What could cause this kind of random skipping of variables?