Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my view I have an ajax call:

    $(".previous").click(function() {
        $.ajax({
            type: "POST",
            url: "planner/get_cal",
            data: {current_month: current_month},
            success: function(msg){
                alert(msg);
            }

        });

the get_cal function in my Planner controller:

function get_cal()
{
    echo "dinosaurs";
}

However, instead of returning "dinosaurs", it returns a full HTML page. I can't figure out why. Thoughts? Thanks a lot.

share|improve this question
Do you have a layout tied to your controller that would render it? – mikelbring Apr 12 '11 at 15:20
what do you get when you try manually from a browser ? – Vamsi Apr 12 '11 at 15:35
@krishna, going to the get_cal page manually gets me a blank page with "dinosaurs", as expected. – cabaret Apr 12 '11 at 15:37
1  
Have you tried adding a leading slash? url: "/planner/get_cal", – ithcy Apr 12 '11 at 15:41
What does firebug show? Is it a 404 ? – Bogdan Apr 12 '11 at 15:44
show 1 more comment

6 Answers

up vote 4 down vote accepted

I solved this by using a leading slash as suggested in the comments to my question.

            $.ajax({
            type: "POST",
            url: "/planner/get_cal",
            dataType: "text",
            data: {current_month: current_month},
            success: function(msg){
                alert(msg);
            }
share|improve this answer

Try setting the dataType to "text"


$.ajax({
  type: "POST",
  url: "planner/get_cal",
  data: {current_month: current_month},
  dataType: "text",
  success: function(msg){
      alert(msg);
  }
});
share|improve this answer

When using the CodeIgniter structure of Controler/Method uri segments I've found it much easier to use ../../controller/method as my URL's in jquery ajax requests. I also recommend specifying a dataType so that the string is parsed and returned as an object.

Here is an example;


$.ajax({  
     type: "POST",  
     dataType: "json",  
     url: "../../controller/method",  
     success: mySuccessFunction  
}); 
share|improve this answer

You can also get it by adding exit after echo in your php file like below:

function get_cal()
 {
    echo "dinosaurs";exit;
}

It will work. :)

share|improve this answer

For anyone that is using the Zend Framework, I was experiencing the same issues where the AJAX response was returning the full HTML instead of the json_encode() response. This was resolved by adding the following to my controller:

    if ($this->getRequest()->isXmlHttpRequest())
    {
        $this->_helper->layout()->disableLayout();
        $this->_helper->viewRenderer->setNoRender(true);
    }
share|improve this answer

These type of problem come when your php file and html file are not on proper path so that apache server could parse php files. Without mentioning type:'text' and any other format also, ajax will work. But be sure that your server is reaching to php file. Otherwise whole file will be treated as text and returned.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.