Update test.html

This commit is contained in:
vkservicesllc
2018-11-07 09:28:51 -05:00
committed by GitHub
parent b6541e79c4
commit 4e09e357c4

View File

@@ -8,6 +8,7 @@
<style> <style>
#demo { #demo {
width: 1200px; width: 1200px;
height: 100%;
margin: 9px auto; margin: 9px auto;
border: 2px solid blue; border: 2px solid blue;
} }
@@ -20,8 +21,6 @@
<button type="button" onclick="loadHTML()">Get LinkBoard</button> <button type="button" onclick="loadHTML()">Get LinkBoard</button>
<br><br> <br><br>
<div id="demo"></div> <div id="demo"></div>
<script src="../app/functions.js"></script>
<script> <script>
function loadHTML() { function loadHTML() {
@@ -38,6 +37,8 @@ function myFunction(data) {
document.getElementById("demo").innerHTML = data.responseText; document.getElementById("demo").innerHTML = data.responseText;
} }
</script> </script>
<script src="../app/functions.js"></script>
</body> </body>
</html> </html>