5 /* The console container element */
6 body { background-color: black; font-size: 16px; font-family: Courier; overflow: hidden; padding: 0 0 0 0;}
13 background-color:black;
20 /* The inner console element. */
26 background-color: gray;
28 /* The cursor color when the console looses focus. */
29 .jqconsole-blurred .jqconsole-cursor {
30 background-color: #666;
32 /* The current prompt text color */
36 /* The command history */
37 .jqconsole-old-prompt {
41 /* The text color when in input mode. */
45 /* Previously entered input. */
46 .jqconsole-old-input {
50 /* The text color of the output. */
54 .jqconsole-return, .jqconsole-header {
63 <div id="console"></div>
64 <script src="jquery.js" type="text/javascript" charset="utf-8"></script>
65 <script src="jqconsole.min.js" type="text/javascript" charset="utf-8"></script>
66 <script src="jscl.js" type="text/javascript"></script>
68 var jqconsole = $('#console').jqconsole();
69 lisp.write = function(str){
70 jqconsole.Write(xstring(str), 'jqconsole-output', false);
74 <script src="tests.js" type="text/javascript"></script>