I have a little problem with an AJAX GET in seaside 3 , here is the code i use :<br /><br />renderContentOn: html<br /><br />html heading level:1; with:&#39;Sample get&#39;.<br />html break.<br /><br />html div id: &#39;makita&#39;.<br />html document <br />                addLoadScript:(html jQuery get url:&#39;http://www.makita.fr&#39; onComplete:&#39;$.(&quot;makita&quot;).html(data);&#39;)<br /><br />But, of course, data here is empty because the generated code gives :<br /><br />&lt;script type=&quot;text/javascript&quot;&gt;/*&lt;![CDATA[*/function onLoad(){$.get(&quot;http://www.makita.fr&quot;,function(){$.(&quot;makita&quot;).html(data);})}/*]]&gt;*/&lt;/script&gt;<br /><br />All is perfect but the missing data parameter in the internal function() of $.get.<br /><br />I couldn&#39;t find where to add this.