<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: javascript code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Thu, 21 Aug 2008 02:57:01 GMT</pubDate>
    <description>DZone Snippets: javascript code</description>
    <item>
      <title>Simple Ajax</title>
      <link>http://snippets.dzone.com/posts/show/3702</link>
      <description>http = getHTTPObject();&lt;br /&gt; &lt;br /&gt;function getHTTPObject(){&lt;br /&gt;  var xmlhttp;&lt;br /&gt; &lt;br /&gt;  /*@cc_on&lt;br /&gt; &lt;br /&gt;  @if (@_jscript_version &gt;= 5)&lt;br /&gt;    try {&lt;br /&gt;      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");&lt;br /&gt;    }catch(e){&lt;br /&gt;      try{&lt;br /&gt;      xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");&lt;br /&gt;    }catch(E){&lt;br /&gt;      xmlhttp = false;&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;  @else&lt;br /&gt;    xmlhttp = false;&lt;br /&gt;  @end @*/&lt;br /&gt; &lt;br /&gt;  if(!xmlhttp &amp;&amp; typeof XMLHttpRequest != 'undefined'){&lt;br /&gt;    try {&lt;br /&gt;      xmlhttp = new XMLHttpRequest();&lt;br /&gt;    }catch(e){&lt;br /&gt;      xmlhttp = false;&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt; &lt;br /&gt;  return xmlhttp;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;function doMath(){&lt;br /&gt;  var url = "backend.php?op=" + document.getElementById('op').value;&lt;br /&gt;  url += "&amp;num1=" + document.getElementById('num1').value;&lt;br /&gt;  url += "&amp;num2=" + document.getElementById('num2').value;&lt;br /&gt; &lt;br /&gt;  http.open("GET", url, true);&lt;br /&gt;  http.onreadystatechange = handleHttpResponse;&lt;br /&gt; &lt;br /&gt;  http.send(null);&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;function handleHttpResponse(){&lt;br /&gt;  if(http.readyState == 4){&lt;br /&gt;    document.getElementById('answer').innerHTML = http.responseText;&lt;br /&gt;  }&lt;br /&gt;}</description>
      <pubDate>Tue, 20 Mar 2007 03:59:10 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/3702</guid>
      <author>davetrane (David Davis)</author>
    </item>
  </channel>
</rss>
