ignore whitespace js code example
Example 1: js remove spaces
str = str.trim();
Example 2: how to remove spaces from strings javascript
var str = '/var/www/site/Brand new document.docx';
document.write( str.replace(/\s/g, '') );
str = str.trim();
var str = '/var/www/site/Brand new document.docx';
document.write( str.replace(/\s/g, '') );