Parnswir
Parnswir

Reputation: 131

How to prevent jquery terminal from replacing string

I'm using jquery terminal (http://terminal.jcubic.pl/) to emulate a console in JavaScript. When I type &para= (e.g. as part of a URL) in the prompt, it gets automatically replaced by ¶=. This also happens if I call echo from a function.

How can I prevent this behavior?

Upvotes: 1

Views: 215

Answers (1)

Parnswir
Parnswir

Reputation: 131

I got around the issue by replacing & with &. I realize, that this is just a workaround, but it suffices for my cause.

Upvotes: 1

Related Questions