Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
185
rated 0 times [  186] [ 1]  / answers: 1 / hits: 22473  / 10 Years ago, mon, november 17, 2014, 12:00:00

I have this code:



<script src=http://external/js/file/url.js>
</script>


I want to do something like this-



<script>
if(2>1){
//include http://external/js/file/url.js
}
</script>


Any idea?


More From » include

 Answers
1

This question has been asked before in Include a Javascript File in another Javascript File.
This peice of code may fit what you have been looking for



function include(filename)
{
var head = document.getElementsByTagName('head')[0];

var script = document.createElement('script');
script.src = filename;
script.type = 'text/javascript';

head.appendChild(script)
}


if that script does not work, i suggest you to look over and read the post above: Include a Javascript File in another Javascript File.



I hope this helps, it may not be the answer you had been looking for, but it may just help.


[#68781] Friday, November 14, 2014, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
anikas

Total Points: 258
Total Questions: 102
Total Answers: 95

Location: Monaco
Member since Sun, Jan 16, 2022
2 Years ago
anikas questions
;