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

Quick question is it possible to get javascript script tags inside JQuery .html function?

function pleaseWork(){
    $('#content').html('<h3 style="color:#335c91">This is the header</h3><div class="holder"><script type="text/javascript" src="javascriptFile.js"></script></div>');
}

What I am trying to accomplish is when the user clicks on a button, this header and javascript code show up in the div content, right now when I click on the button, there is no header showing and it goes to a blank page and shows the javascript code (it works, but not how I would like it to work.)

Thanks.

share|improve this question
1  
What you've got looks fine. – Matt Ball Oct 4 '11 at 21:27
Can you show us a jsFiddle? – Xander Oct 4 '11 at 21:28
1  
Would using .getScript() be a better idea? What's in javascriptFile.js? Can you move it's functionality to your main JS file? – Bojangles Oct 4 '11 at 21:28
1  
also why don't you create a script element, set the src, and append it to the parent element? I think this is the "cleaner" way of doing this. – Mala Oct 4 '11 at 21:30
1  
You want to display the contents of the javascript file within the div? – graphicdivine Oct 4 '11 at 22:06
show 1 more comment

1 Answer

Escape the </script> tag, by replacing it with this: <\/script>
If that doesn't work, also surround the script with cdata tags.

Working demo: http://jsfiddle.net/BgxZN/1/

EDIT:
If you want to actually show the contents of the javascript file inside the div, you'll need to use an XMLHTTP request or an iframe.

New working demo: http://jsfiddle.net/BgxZN/13/

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.