<br><br><div class="gmail_quote">On Fri, Apr 18, 2008 at 12:06 PM,  &lt;<a href="mailto:adam.prime@utoronto.ca">adam.prime@utoronto.ca</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">Quoting Fulko Hew &lt;<a href="mailto:fulko.hew@gmail.com">fulko.hew@gmail.com</a>&gt;:<br>
<br>
&gt; Hijacking this thread...<br>
&gt;<br>
&gt; Can we have a talk on simple AJAX in Perl?<br>
&gt; I know Kees gave us a talk, but I&#39;m just wanting to do simple RPC<br>
&gt; and something like dynamically updating a table, or portion of a screen.<br>
&gt;<br>
&gt; I must be stupid, but I&#39;ve hit a bump in the learning curve.<br>
<br>
</div>The server side of AJAX isn&#39;t really that much different than the<br>
server side of CGI really. &nbsp;you just take a request and compose a<br>
response. &nbsp;Depending on what javascript library you are using (if you<br>
are using one at all) will determine what your page generates. &nbsp;It<br>
could be XML, it could be html, it could be JSON, it could be anything.<br>
<br>
The &quot;hard&quot; (or potentially hard) part is the javascript, but most of<br>
the ajax i&#39;ve written was for the mootools library, and the actual JS<br>
boils down to this:<br>
<br>
new Ajax(url, {<br>
 &nbsp; &nbsp; method: &#39;get&#39;,<br>
 &nbsp; &nbsp; update: $(&#39;replace_me&#39;)<br>
}).request();<br>
<br>
Which just fetches the URL &#39;url&#39;, and stuffs whatever it gets back<br>
from that URL into the element with the ID replace_me. &nbsp;Obviously this<br>
is a pretty simple example of ajax, but it&#39;s a start.</blockquote><div><br>Still too high level (abstract)<br>I like/need something around the 500 foot level, not 10,000 feet.&nbsp; :-)<br><br></div></div><br>