Taking this code as an example:

new Request.HTML(
        {
                url:'some/url/script.php',
                evalScripts:true,
                async:false,
                autoCancel:true,
                
                onSuccess: function(html) {
                        //html processing here....
                        alert(html);
                },

                onFailure: function() {
                        alert('Error');
                }
        }
).get();

I would just take the html node listing, process it in whatever way I
want, then inject it....

Is that what you meant???


On 9/18/08, VirtuosiMedia <[EMAIL PROTECTED]> wrote:
>
>  Just in general, how do you access the response from the Request
>  object? I've been looking at the documentation and the MooTorial, but
>  I can't seem to make any headway. Other Ajax stuff I've done with
>  MooTools I haven't had to manipulate the response at all, so I've just
>  been able to inject it straight into the document, but now I need to
>  make some changes to it first. Any help would be greatly appreciated.
>  Thanks.
>


-- 
◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦◦
www.ivanicus.com

Reply via email to