fork download
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>test</title>
  5. <script src="https://a...content-available-to-author-only...s.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. document.getElementById("div1").innerHTML = "TEST1 ok";
  9. $.ajax({
  10. type:"get", url:"http://n...content-available-to-author-only...t.com/ingame/bs/character/data/pointeffects.json", dataType:"json", success: function(response) {
  11. document.getElementById("div2").innerHTML = "TEST2 ok";
  12. }
  13. });
  14. document.getElementById("div3").innerHTML = "TEST3 ok";
  15. });
  16. </script>
  17. </head>
  18. <body>
  19.  
  20. <div id="div1">TEST1</div>
  21. <div id="div2">TEST2</div>
  22. <div id="div3">TEST3</div>
  23.  
  24. </body>
  25. </html>
Runtime error #stdin #stdout #stderr 0s 107072KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
prog.js:1:0 SyntaxError: syntax error:
prog.js:1:0 <!DOCTYPE html>
prog.js:1:0 ^