fork download
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <link rel="stylesheet" href="popup_style.css"/>
  7. </head>
  8.  
  9. <body>
  10. <div id="popup-content">
  11. <button id="true_button" onclick="true_click()">true</button>
  12. <button id="false_button">false</button>
  13. </div>
  14.  
  15. <div id="error-content" class="hidden">
  16. <p>can not load this page.</p>
  17. </div>
  18. <script>
  19.  
  20. function true_click(){
  21.  
  22. window.alert("true");
  23. }
  24. </script>
  25.  
  26. <!---
  27. <script src="popup_script.js"></script>
  28. -->
  29. </body>
  30.  
  31. </html>
Runtime error #stdin #stdout #stderr 0s 105856KB
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 ^