Quelltext

<!doctype html> <html> <head> <meta charset="utf-8"> <title>Beispiel</title> <link rel="stylesheet" href="css/smoothness/jquery-ui-1.10.4.min.css"> <script src="js/jquery-1.10.2.js"></script> <script src="js/jquery-ui-1.10.4.min.js"></script> <script src="js/plugins/jquery.terminal-0.8.7.min.js"></script> <link rel="stylesheet" href="css/plugins/jquery.terminal.css"> <script type="text/javascript"> jQuery(function($, undefined) { $('#term_demo').terminal(function(command, term) { if (command !== '') { try { var result = window.eval(command); if (result !== undefined) { term.echo(new String(result)); } } catch(e) { term.error(new String(e)); } } else { term.echo(''); } }, { greetings: 'Javascript Interpreter', name: 'js_demo', height: 200, prompt: 'js> '}); }); </script> </head> <body> <div id="term_demo" class="terminal" style="height: 200px;"></div> </body> </html>

Downloads / Website

Website
Download