Relace all backslash (\) from a string using java script Get link Facebook X Pinterest Email Other Apps By Unknown - July 02, 2012 Use split and join method... var myText="Hello \I\am java\script"; alert(myText. split('\\').join(' ') ); Read more