Firstly, is there a way to use document.write() inside of JQuery\'s $(document).ready() method? If there is, please clue me in because that will re
document.write()
$(document).ready()
picardo's answer works, but this is more intuitive for me:
$("body").append('');
Also, for the script part that is being inserted with document.write(), check out jQuery's getScript() function