Hello everyone,

Using the CFajaxProxy I am getting my content throught JSON.

I need to handle the return of my query (html content) and put it on a DIV 
container.

This is what I am using so far:

        // return data form CF
        function jsReturn(r) {
        alert(r);
        var op = document.getElementbyID('content');
        op.appendChild(document.createTextNode(r));
        }

My alert is working and I can see the requested content coming from the server. 
It is on HTML format. Unfortunantly without seeing any error on my browser or 
on my firebug the conthent just doesnt appear at all.

I dont even thing that the document.createTextNode(r) is going to work as I 
believe that most likely is going to dump the html code instead of genrating 
the page. 

Thanx in advance
Ioannis  


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309766
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to