Advertisement
Shad0w

Untitled

Dec 11th, 2011
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.81 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Javascript Console</title>
  4.         <script type="text/javascript">
  5.             function runCode(code) {
  6.                 try {
  7.                 document.getElementById('result').innerHTML='Result : <br />'+eval(code);
  8.                 }
  9.                 catch(e) {
  10.                 document.getElementById('result').innerHTML=e;
  11.                 }
  12.             }
  13.         </script>
  14.         <style type="text/css">
  15.             body { text-align: center; color: green; background-color: black; font-famiyl: Arial; font-size: 12px; }
  16.             input,textarea,select { color: green; background-color: black; border:1px; border-color: white; border-style: solid; }
  17.         </style>
  18.     </head>
  19.     <body>
  20.         <textarea cols="55" cols="15" id="code"></textarea><br /><input type="button" value="Run" onClick="javascript:runCode(document.getElementById('code').value);" /><div id="result"></div><div id="frame"></div>
  21.  
  22.     </body>
  23. </html>
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement