vote up 0 vote down star

Hey

Where and how do I include .js files in Views in CodeIgniter?

I have tried this:

<script type="text/javascript" src="system/application/libraries/jquery.js"></script>

As I figured that the index.php is the one that is loading the views, so I'm guessing that every time a page is loaded the current dir path is at root because index.php is located at root. Is this true?

The above line doesn't so I am doing something wrong. I have a CodeIgniter project. The path is like this:

localhost/CodeIgniter/system/application

so which path should I use to include my jquery.js file which is located in

localhost/CodeIgniter/system/application/libraries

when I want to load the jquery.js file in a View located here:

localhost/codeIgniter/system/application/views/till_view.php
flag

4 Answers

vote up 1 vote down check

Hi -

It's not the "index.php" file that is the view. The view is whatever is loaded in your controller when you do a

$this->load->view("viewname");

The file "viewname.php" can then include the .js files, just as a normal .html (or .php) file would:

<script  src="/url/to/javascript.js" />

You may want to create a default view or a "header" view that includes some or all of the (common) .js files for your project.

-CF

link|flag
1  
You don't need to sign your name when you already have your avatar signing for you. – Crises of Identity Oct 11 at 1:35
vote up 0 vote down

Could maybe pick something up from this page? http://codeigniter.com/wiki/jQuery

link|flag
vote up 2 vote down

First question:

It depends if you use absolute or relative urls.

Absolute urls go from the root of your domain. Relative urls are loaded relative from the current directory (including the url segments).

Second question: It's best to use an absolute URL. Because of the pretty urls, it's not recommended to use relative urls.

The easiest way is to use the url helper and then use the site url function like this:

$this->load->helper('url');
echo site_url('system/application/libraries/jquery.js');

Ps. I recommend to put things like javascript and images outside of the CodeIgniter directory.

link|flag
vote up 1 vote down

base_url() always works fine for me

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.