[eluser]Siyavash[/eluser]
the title describes what Im searching for:
Is there any way I can use .load() function of JQUERY ?
It is not working at all!
I tried this line of code but it did not respond :
Code:
$('#content').load("<?php echo site_url('main_index/load_view'); ?>");
and this is my load_view function inside my default controller (main_index) :
Code:
function load_view()
{
$this->load->view('register_admin_view');
}