I have a string like this:
var str = \"I\'m a very^ we!rd* Str!ng.\";
What I would like to do is removing all special characters from the a
Remove/Replace all special chars in Jquery :
If str = My name is "Ghanshyam" and from "java" background
and want to remove all special chars (") then use it
str=str.replace(/"/g,' ')
result: My name is Ghanshyam and from java background
Where g means Global @Thanks