desc = "dd ggg ffff";
String.prototype.replaceAll = function(s1,s2){
return this.replace(new RegExp(s1,"gm"),s2);
alert(desc.replaceAll(' ',''));
}
desc = "dd ggg ffff";
String.prototype.replaceAll = function(s1,s2){
return this.replace(new RegExp(s1,"gm"),s2);
alert(desc.replaceAll(' ',''));
}