Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7978487
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:30:07+00:00 2026-06-04T09:30:07+00:00

I am a newbie in codeigniter. I want to load jquery on every page.

  • 0

I am a newbie in codeigniter. I want to load jquery on every page. I know we have to use autoload.php. But inside it there is section where static contents like js or css can be included. How to do this? I created another index like this

$autoload['static'] = array(JS_LIBS_PATH.'/jq.js');

But obviously nothing happened. That constant has been defined in config,php. Using same constant I could put jq on a page, but what about autoload ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T09:30:09+00:00Added an answer on June 4, 2026 at 9:30 am

    I can think of several elaborate solutions but I really think that javascript is presentation-level and shouldn’t be in your autoload, models, controllers, etc.

    You can just use a master view file of some kind with your <head> and basic HTML requirements:

    <!doctype html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <title><?php echo $title; ?></title>
    
        <script src="/path/to/jquery.js"></script> <!-- jQuery on every page -->
    
        <!-- alternatively, loop through files in a custom config setting -->
        <?php foreach (config_item('default_js') as $src): ?>
        <script src="<?php echo $src; ?>"></script
        <?php endforeach; ?>
    
        <!-- ... and/or loop through files set in a controller -->
        <?php foreach ($js_files as $src): ?>
        <script src="<?php echo $src; ?>"></script
        <?php endforeach; ?>
    
      </head>
      <body>
        <header />
        <?php echo $content; ?>
        <footer />
      </body>
    </html>
    

    Then just load views like this:

    $data['js_files'] = array('draggable.js', 'widgets.js');
    $content = $this->load->view('index', $data, TRUE);
    $this->load->view('master', array('title' => 'Home', 'content' => $content));
    

    Of course this is just one solution out of millions, but the idea of Codeigniter “autoloading” CSS and Javascript makes no sense, you have to “load” it yourself in one way or another – how you do it is completely up to you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am newbie. I have Windows XP and use the CodeIgniter framework. I wanted
I'm a newbie implementing OOP in PHP. For PHP project, I often use codeigniter
Im newbie here.I have a problem with codeigniter segment() method.I referred 6th segment of
I am a newbie in CodeIgniter. And would like to know how am I
I am a newbie to drupal, and have used cakephp and codeigniter frameworks earlier.
am newbie to jquery..I have a three steps registration form in which the user
I'm currently migrating my project from PHP (codeigniter) to Rails3 and it's amazing. But
I am a newbie with PHP and CodeIgniter. I am building a CRUD app
Newbie IIS question: I want to setup HTTPS access for my XHTML page (not
I'm very newbie to php and codeigniter (and smarty too). I follow a lot

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.