Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
278 views
Welcome To Ask or Share your Answers For Others

1 Answer

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...