$.ajax({
                type: "POST",
                url: "chart.php",
                cache: false,
                data: $("#my_form").serialize(),
                success: function (html) {
                    //$("body").html(html); 
                    $("#chart_div").html(html);                    
                    alert("ok");
                }
                
            });


Above code -  call the chart.php 
                 -  success response is unable to processed
                 -  chart.php is working fine if i call from browser 
address bar
                 -  but not working in the ajax call

Please help my how I show the chart from my ajax call .....


*Thanks*

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to