where to put js/jquery file how to use it in view files ? |
[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) |
Messages In This Thread |
where to put js/jquery file how to use it in view files ? - by El Forum - 08-12-2011, 07:39 PM
where to put js/jquery file how to use it in view files ? - by El Forum - 08-12-2011, 07:53 PM
|