For anyone that has ever run into the flaw that makes dynamic content disapear in IE I’ve found the solution
The issue is caching – I’m not sure what causes the issue but I do know that in IE it tries to cache the PHP/XML doc and it screws everything up
the fix is to concatinate a random/unique string at the end of the load request - Like so-
blogStuff.load(“link.php?cachebuster=” + new Date().getTime());
works like a charm … my problem in IE was when you clicked refresh or you clicked the button that loaded the information into the dynamic text field it would disapear.
more info / detail can be found here
[COLOR=#0000ff]http://www.communitymx.com/content/article.cfm?page=1&cid=827EA[/COLOR]
Hope you guys find this usefull … and pass the word
JUMBOshrimp