instead of innerHTML (since it has issues in some browsers) I use mootools' set function:
$('el').set('html','<p>whatever you want</p>'); or $('el').set('text','whatever you want'); On Feb 3, 7:23 am, Itay Moav <itay.malimo...@gmail.com> wrote: > Thanks, > > I posted the correct solution, probably didn't do it right, it is: > > $('form to send id').set('send',{'onSuccess':function(html,xml){$('element > to get data id').innerHTML=html}}); > $('form to send id').send(); > > You can probably make this look better with the correct append text or > append html.... > > > > On Mon, Feb 2, 2009 at 8:59 PM, ryan <rtnetwo...@gmail.com> wrote: > > > Something like.... > > > $('element-to-insert-content-into').set('html',responseXML); > > > Ryan