Possible Duplicate:
JavaScript: Efficiently replace all accented characters in a string?
HI,
I want to change letter selected letters: "Ą" to "A", "ć" to C etc... in jQuery
currently my code changes letter to *
how to modify it to change given letters?
var finishedslug = slugcontent_hyphens.replace(/[^a-zA-Z0-9\-]/g,'*');