As title said, I\'m trying to figure out how to use javascript and jquery libraries on CI.
Following instruction in the docs, I load the library in my controller:
I had the same problem, and found :
load->library('javascript'); ?>
load->library('javascript/jquery'); ?>
on https://ellislab.com/forums/viewthread/181742/#860506
Because jquery is in javascript folder.
Or
$autoload['libraries'] = array('database', 'session', 'javascript', 'javascript/jquery');
In the autoload.php file.
That solved the problem of loading the librairy.