Raw File
deferred-anchor.xhtml
<?xml version="1.0"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
var xhr = new XMLHttpRequest();
xhr.onprogress = function() {
};
xhr.onload = function() {
  document.documentElement.innerHTML = this.responseXML.documentElement.innerHTML;
};
xhr.open("get", "deferred-anchor-ref.xhtml");
xhr.send();
</script>
</head>
</html>
back to top