skip to Main Content

How can I get a fully working 'echo' command in a Jquery terminal?

Im trying to get a echo command to echo what the user types in a JQuery termial. This is the code I have <link href="https://unpkg.com/jquery.terminal/css/jquery.terminal.min.css" rel="stylesheet" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://unpkg.com/jquery.terminal/js/jquery.terminal.min.js"></script> <script> $('body').terminal({ echo: function(...args) { this.echo(args) }, }, {…

VIEW QUESTION
Back To Top
Search