Forum Moderators: open
I've developed a website using java/javascript in IE6, and now I'm testing it in Firefox. I've run across a very annoying problem. Firefox seems to be removing spaces from my strings. Not just leading and trailing spaces, but also parsing series of spaces within the string down to one space. A simple example (the dots are spaces):
alert("...hello...there...")
in IE, shows:...hello...there...
in Firefox :.hello.there.
This is a big problem, since we query databases that have fields with multiple spaces that we need to maintain. Is there any way of disabling this unwanted parsing?
I'm really surprised the default behavior of FF would allow this?!
Thanks.
muirfield