Dynamically added script will not execute
I am dynamically adding a script of a github gist. If I added it to the html before the page loads, the script will execute. But If I try to add it to the page after it loads it adds the script to the page but doesn't execute it. Here is how I am adding it to the page Html <div id="results"></div> Javascript $('#results').click(function() { var script = document.createElement("script"); script.type = "text/javascript"; script.src = "https://gist.github.com/1265374.js?file=GetGists.js"; document.getElementById('results').appendChild(script); console.log('script added'); }); Here is the live