Update test.html

This commit is contained in:
vkservicesllc
2018-11-07 10:48:46 -05:00
committed by GitHub
parent a7b9c51c66
commit d6507e20c6

View File

@@ -17,6 +17,7 @@
<br />
<button type="button" onclick="loadHTML()">Load LinkBoard</button>
<div id="demo"></div>
<script id="fetchScript"></script>
<script>
function loadHTML() {
@@ -28,16 +29,12 @@
};
http.open("GET", "../rpm/linkboard.html", true);
http.send();
document.getElementById('fetchScript').setAttribute('src', '../app/functions.js'>;
}
function myFunction(data) {
document.getElementById("demo").innerHTML = data.responseText;
}
</script>
<script id="fetchScript"></script>
<script>
document.getElementById('fetchScript').setAttribute('src', '../app/functions.js'>;
</script>
</body>
</html>