2

I'm using the JQuery Terminal here: http://terminal.jcubic.pl/

I am trying to create a console style terminal (Quake-like console) as outlined in example 2 from this page: http://terminal.jcubic.pl/examples.php

I also want it to call back to an RPC service, as listed in example 1.

Perhaps someone with more JQuery experience than I can tell me if they believe its possible to do this? I'm trying to do both together.

jcubic
  • 61,973
  • 54
  • 229
  • 402
Sugitime
  • 1,818
  • 4
  • 23
  • 44

1 Answers1

0

You can simply put string as first argument to tilda example plugin or you can call your RPC inside eval function.

 $('#tilda').tilda('rpc-service.php', { <OPTIONS> });

first argument to tilda is passed to terminal executed inside so you can do the same for tilda as for the terminal.

jcubic
  • 61,973
  • 54
  • 229
  • 402