I have a view which has an AJAX POST to a controller list_products_of_company
:
$('select.product_dimension').change(function () {
var a = "a";
var b = "b";
$.post("<?php echo base_url(); ?>home/list_products_of_company",
{
a : a, b : b
}
)
});
Controller :
function list_products_of_company(){
$a = $this->input->post('a');
$b = $this->input->post('b');
$this->data['products_of_company'] = $this->Home_model->get_products_of_company($a,$b);
$this->load->view('product_list',$this->data);
}
How do I load the view with the data that I got from the database?
Edit:
I don't want to load the ajax response inside a div. I need the entire view page to be loaded in the window.