Does anyone know if there exists a built in JavaScript function to turn &
into &
so it would turn the string something1 & something2
into something1 & something2
of course I can use MyString.replace(/\&/g, "&"); but I would rather not.
I tried using the following with no joy: decodeURIComponent unescape
Thanks