Welcome Guest, Not a member yet? Register   Sign In
Jquery library load error
#1

[eluser]AbyJaby[/eluser]
Hi,

Can anyone guide me how to load jquery library and use it.
The following code is giving me the error
Code:
$this->load->library('jquery');

Thanx in advance.
#2

[eluser]PhilTem[/eluser]
The library is called 'javascript' which is more a driver than a library (at least it's intended to be more a driver than a library, but the source-code does not do this). Therefore use

Code:
$this->load->library('javascript'); // autoloads jquery-library
// OR
$this->load->library('javascript', array('js_library_driver' => 'scripto', 'autoload' => FALSE)); // loads script-library (which doesn't exist yet)




Theme © iAndrew 2016 - Forum software by © MyBB