I have solved the problem. The issue was with PHP, not JS. In my crosss-site PHP script, I used these two headers:
header( 'Cache-Control: no-store, no-cache, must-revalidate' ); header( 'Cache-Control: post-check=0, pre-check=0', false ); IE6 cannot understand this, so I changed it to: header( 'Cache-Control: max-age=0, must-revalidate, post-check=0, pre- check=0', false ); On Mar 16, 2:17 am, Daan Mortier <[email protected]> wrote: > JoJo: > > > I'm doing some cross-site AJAX hack by dynamically inserting a script > > tag. This script tag loads a PHP script that prints out javascript: > > Me: > > > Personally, I load in the content via XmlHttp, and insert it into a > > tag. There are some things to take into account when doing this. The > > insertBefore trick is based on information from John Resig. > > I must've been really sleeping, because I did not add ANY new > information for you in my reply =] -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
