<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1039864" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1039864</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/ie-and-ajax-problems#comment-1225462</link>
    <description> &lt;p&gt;here is the site in question:   &lt;a href=&quot;http://www.housingmarketupdate.com&quot; class=&quot;bb-url&quot;&gt;housingmarketupdate.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;it appears that a (IE) users cache gets filled and locks up the selectable menus or impedes the loading of data.  it makes it seem like the thing is not working... but in firefox it flys.&lt;/p&gt;
&lt;p&gt;that code that 247 posted... is that something that should go in every page or just one?  The programmer said he uses something similar but I can&#039;t understand why this site is having these problems while others with similar features do not.&lt;/p&gt;
&lt;p&gt;i&#039;d be happy to post code for anyone who wants to look at it.  Also... IE 7 seems to be the worst....&lt;/p&gt;
 </description>
     <pubDate>Thu, 18 Oct 2007 21:38:10 +0000</pubDate>
 <dc:creator>cbc58</dc:creator>
 <guid isPermaLink="false">comment 1225462 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/ie-and-ajax-problems#comment-1225376</link>
    <description> &lt;p&gt;Just a shot in the dark - the create request object is tricky for IE vs the other browsers so when I started learning Ajax a year ago it took me a while to find a good, robust and workable function - I have listed it below in case you need it.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;function &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;createRequestObject&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;window&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;XMLHttpRequest&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;) { &lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;// Mozilla, Safari, Opera...&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;var &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;xmlhttp &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= new &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;XMLHttpRequest&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;xmlhttp&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;overrideMimeType&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;xmlhttp&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;overrideMimeType&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;text/xml&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;window&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;ActiveXObject&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;) { &lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;// IE&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;try {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;xmlhttp &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= new &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;ActiveXObject&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;Msxml2.XMLHTTP\&quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } catch (e) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var xmlhttp = new ActiveXObject(\&quot;Microsoft.XMLHTTP\&quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } catch (e) {}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!xmlhttp) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(&#039;Giving up :( Cannot create an XMLHTTP instance&#039;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return false;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return xmlhttp;&lt;br /&gt;}&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 15 Oct 2007 21:19:26 +0000</pubDate>
 <dc:creator>247SiteAlert</dc:creator>
 <guid isPermaLink="false">comment 1225376 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/ie-and-ajax-problems#comment-1225370</link>
    <description> &lt;p&gt;yes... when it is using some ajax features.  I have the programmer working on it and will let you know what happens.... tks.&lt;/p&gt;
 </description>
     <pubDate>Mon, 15 Oct 2007 18:22:45 +0000</pubDate>
 <dc:creator>cbc58</dc:creator>
 <guid isPermaLink="false">comment 1225370 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/ie-and-ajax-problems#comment-1225294</link>
    <description> &lt;p&gt;You&#039;re saying this lockup happens when you try to use one of the Ajax features or no?&lt;/p&gt;
 </description>
     <pubDate>Sat, 13 Oct 2007 16:57:40 +0000</pubDate>
 <dc:creator>247SiteAlert</dc:creator>
 <guid isPermaLink="false">comment 1225294 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/ie-and-ajax-problems#comment-1225252</link>
    <description> &lt;p&gt;can you post the Javascript code that goes and gets the info from the server then puts it in the webpage?&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Fri, 12 Oct 2007 14:12:50 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1225252 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
