Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Javascript to generate additional custom javascript and then adding it to the HEAD tag. The code below works great adding a javascript file, but what if the script is in a variable just generated?

var scriptTag = document.createElement("script");
scriptTag.setAttribute("type", "text/javascript");
scriptTag.setAttribute("src", "myfile.js");
document.getElementsByTagName("head")[0].appendChild(scriptTag);

Thank you for your attention.

share|improve this question
1  
In a variable how? Source code as a string? – Šime Vidas Nov 14 '12 at 21:55

3 Answers

up vote 1 down vote accepted
   // script text
var txt = "alert('foo');";

var scriptTag = document.createElement("script");
scriptTag.setAttribute("type", "text/javascript");

   // append it in a text node
scriptTag.appendChild(document.createTextNode(txt));
document.getElementsByTagName("head")[0].appendChild(scriptTag);

FWIW, you don't need a script tag for this. You can use the Function constructor instead.

var txt = "alert('foo');";

Function(txt)();
share|improve this answer
That got it! TY – Vincent James Nov 14 '12 at 22:01
@VincentJames: You're welcome. – I Hate Lazy Nov 14 '12 at 22:02
1  
+1 for createTextNode – Paul S. Nov 14 '12 at 22:07
var scriptTag = document.createElement("script");
scriptTag.setAttribute("type", "text/javascript");

scriptTag.innerHTML = "What you want here";///....

document.getElementsByTagName("head")[0].appendChild(scriptTag);

Live DEMO

share|improve this answer
Thanks Gordon, when I do that I get a function not found. When I inspect the element with Chrome it shows the new SCRIPT tag in the HEAD, but it is always empty and the string being assigned to .innerHTML does have a value. – Vincent James Nov 14 '12 at 21:56
@VincentJames: You'll want to get rid of the "src" attribute that is being added. – I Hate Lazy Nov 14 '12 at 21:58
@VincentJames. Check out the demo. – gdoron Nov 14 '12 at 22:00

Both answers seem ok specially the one from @gdoron.

I've written a simple example in case you want to do the same thing in jquery: http://jsfiddle.net/bitoiu/EKpGg/

Snippet:

$(function(){

    var script = document.createElement( 'script' );
    script.type = 'text/javascript';
    // script.url = 'some valid url';
    $('head').append( script );
});​
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.