![]() |
where to put js/jquery file how to use it in view files ? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: where to put js/jquery file how to use it in view files ? (/showthread.php?tid=44385) |
where to put js/jquery file how to use it in view files ? - El Forum - 08-12-2011 [eluser]sasori[/eluser] Hi, where do you usually or where is the perfect place to put the js/jquery files and how to invoke them or use them in CI 2.x.x ? T.I.A where to put js/jquery file how to use it in view files ? - El Forum - 08-12-2011 [eluser]jblack199[/eluser] How i do mine is in the root of the site I'll put an inc folder that has a css, images and js folder inside of them... then in config.php I setup my base_url.. say for example it was on a localhost... localhost is my document_root but my project is in myapp so in config.php my base_url would be http://localhost/myapp/ then in my view, i'd include it like: Code: <scrpt type="text/javascript" src="<?php echo base_url(); ?>inc/js/jquery.js"></scrpt>] which in the end would look like: Code: <scrpt type="text/javascript" src="http://localhost/myapp/inc/js/jquery.js"></scrpt> note: had to remove the i from "script" otherwise it would remove it... and if i am using a .htaccess to remove the index.php i'd ensure to include the inc folder in my allowable folders/files by: Code: RewriteCond $1 !^(index\.php|inc|robots\.txt) |