javascript replace spaces between doble quotes code example
Example 1: javascript replace spaces with dashes
title = title.replace(/\s/g , "-");
Example 2: javascript replace spaces with nbsp
str = str.replace(/\s/g, " ");
title = title.replace(/\s/g , "-");
str = str.replace(/\s/g, " ");