Odd issue in Firefox (no problem in Chrome, IE (11 at least), and Safari). The following code was breaking the page and emptying the network profiler, page source, etc...
<script>
var mainScriptSrc = '/scripts/app/site.js';
var jQuerySrc = '/scripts/vendor/jquery/jquery.js';
</script>
<script>
function loadMain(){document.write('<script src="'+mainScriptSrc+'"><\/script>');}
window.jQuery || document.write('<script src="'+jQuerySrc+'" onload="loadMain()"><\/script>')
</script>
Anything stand out as odd?
Thanks,
Dan