typoo1
6 years agoNew Contributor
backslash being removed
Hi there;
I have a question: problem to show a backslash in my string javascript script :
var st="test\\TEST"; it gives me st=test\\TEST
and var st="test\TEST"; it gives me st=testTEST
but me i need st= test\TEST
thank you
Right... because it's giving you the value that is applied in the string pre-processing by the JavaScript engine.
Since the log shows the backslash being removed in your earlier post, I assume that there's some sort of error you're getting when you're trying to connect. Please post the error.