Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Loading a script in the <body> section

I have a javascript for a specific page that I do not wish to be loaded in my header section. Is it possible to load it in the section of the HTML.

Currently I have all my js code inside the but I want to remove it to a seperate js file that I can load.

I tried using this but it did not work.

<script type="text/javascript" src="<?php echo base_url();?>js/jquery-1.5.1.min.js"></script>

Thanks

like image 878
Bob Avatar asked Jul 10 '11 18:07

Bob


1 Answers

Q1 : I have a javascript for a specific page that I do not wish to be loaded in my header section. Is it possible to load it in the section of the HTML.

-Yes you can load javascript any where you want, if writing inline code then make sure you add script tag around your code.

-also you can request files like in body

Q2: Currently I have all my js code inside the but I want to remove it to a seperate js file that I can load.

-- no problem in that, thats even better practice.

Q3 Requesting external file

to request external files you write below written fashion

<script src="http://file_name.js" type="text/javascript"></script>
like image 104
Praveen Prasad Avatar answered Oct 03 '22 17:10

Praveen Prasad