Terminal Demo

http://terminal.jcubic.pl/ Incredibly cool!

by dirkk0

HTML

<div id="term_demo" />

JavaScript

jQuery(function($, undefined) {
    $('#term_demo').terminal(function(command, term) {
        if (command !== '') {
            var result = window.eval("(" + command + ")");
            if (result !== undefined) {
                term.echo(String(result));
            }
        } else {
           term.echo('');
        }
    }, {
        greetings: 'Javascript Interpreter',
        name: 'js_demo',
        height: 200,
        prompt: 'js>'});
});

// http://terminal.jcubic.pl/