codeigniter: Why does the jquery/css not appearing/working on view?

Kilr0y

New Member
I am trying to put the jquery and css on my view . I've already changed the path where the .js files are located. The .css are already inside the view so I dont need to call them. right?\[code\]<script src="http://stackoverflow.com/questions/11528896/<?php echo base_url();?>/js/background/jquery-1.3.2.min.js" type="text/javascript"></script><script src="http://stackoverflow.com/questions/11528896/<?php echo base_url();?>/js/background/jquery.spritely-0.1.js" type="text/javascript"></script>\[/code\]on my controller I just load the view like this\[code\]public function sideBook(){ $this->load->view('vsidebook'); }\[/code\]I'm trying to apply this tutorial on codeigniter
 
Back
Top