I am trying to load a PHP file using jQuery .load and passing through an ID. The code is working fine in everything apart from IE6 as normal.
IE6 does not seem to pass the post values through. I have alerted them before they are sent through and even hard coded some value in, but IE6 does not seem to send them through to the PHP file.
Just wondered if anyone knows if this is a common issue with IE6 and .live or .load or if anyone knows of a solution.
I had this exact same issue, it’s IE6 boosting the href variable. In my example the href was inserting the full path in the href where other browsers were not.
For example using href=“thisPageDOTphp” $(this).attr(‘href’) was being passed as fullURL/thisPageDOTphp. instead of thisPageDOTphp like the non url boosting proper browsers send.
To solve this issue I used a $(this).attr(‘href’).replace(/theURLstring/,‘’).
P.S. I only managed to resolve this using an ajax error handling script