> > Ajax.Updater allows you to simply update the content of a DIV.

If you want to go back to the super simple, you can update the inner
content of a div with:

$("#DIVID").html("CONTENT");

i.e. :
<div id="blah"></div>

<script>
$("#blah").html("I've just been added to the div blah...");
</script>

Therefore, on your callback from the AJAX - as mkmanning has posted -
you could do the update using the items that come back from the ajax.

Regards,
Paul

Reply via email to