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.
.getScript()be a better idea? What's injavascriptFile.js? Can you move it's functionality to your main JS file? – Bojangles Oct 4 '11 at 21:28