Skip to content

Instantly share code, notes, and snippets.

@kevinblake
Created October 29, 2013 12:09
Show Gist options
  • Save kevinblake/7213500 to your computer and use it in GitHub Desktop.
Save kevinblake/7213500 to your computer and use it in GitHub Desktop.
Trim support in IE7 & 8
if (typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment