String.prototype.trim = function() {
// skip leading and trailing whitespace
// and return everything in between
var x=this;
x=x.replace(/^\s*(.*)/, "$1");
x=x.replace(/(.*?)\s*$/, "$1");
return x;
}
"What if? Why not? Challenge the Convention! Let's do some incredible things!" More Quotes
|