/** Within the controller method **/

// If this is an ajax request, then return a JSON string
if ( $this->input->is_ajax_request() ):
  $this->output->set_content_type('application/json');
  $this->output->set_output( json_encode($data) );
endif;