Hi I am trying to create a jquery.terminal. I tried to follow this article, here it uses the body tag
, I wish to use only a div for the terminal area not the whole body. Tried accessing the <div id="myterm"></div>
like
<script>
$('#myterm').terminal({
hello: function (name) {
this.echo('Hello, ' + name + '. Welcome to MyTerm');
}
},
{
greetings: 'Checkout help !'
});
</script>
But didn't work !