how to replace space with an underscore incss code example
Example 1: js replace space with underscore
var string = "my name";
string = string.replace(/ /g,"_"); //returns my_name
Example 2: javascript replace space by underscore
// replaces space with '_'
str = str.replace(/ /g, "_");
// or
str = str.split(' ').join('_');