Reputation: 131
I'm using jquery terminal (http://terminal.jcubic.pl/) to emulate a console in JavaScript. When I type ¶=
(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
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