Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
12
rated 0 times [  17] [ 5]  / answers: 1 / hits: 23394  / 13 Years ago, sun, july 10, 2011, 12:00:00

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


More From » html

 Answers
1

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>

[#91267] Friday, July 8, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cortez

Total Points: 326
Total Questions: 106
Total Answers: 110

Location: Slovenia
Member since Wed, Apr 6, 2022
2 Years ago
;