[attempt 1]
<script>
var example = $.get("example.html");
document.writeln(example);
</script>
I'm looking to embed the source file as raw text (not markup). This does not even come close to working.
Thanks for everyone's help and input so far!
[attempt 2/3] @JasonP
...
<script>
$(document).ready(function () {
$.get("example.html").done(function (result) {
$('#SomeElement').text(result);
});
});
</script>
...
<a id="SomeElement" />
...
As of attempt 3 I'm still not getting anything from this, though. However, I understand the 'ready.'