// To Trim the spaces in String function trimString (str) { str = this != window? this : str; return str.replace(/^\s+/g, '').replace(/\s+$/g, ''); }// End Trim String.prototype.trim = trimString;