Use this function in head section of your webpage and then use trim() function.
if(typeof String.prototype.trim !== ‘function’) {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, ”);
}
}
Use this function in head section of your webpage and then use trim() function.
if(typeof String.prototype.trim !== ‘function’) {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, ”);
}
}
Leave a Reply