Skip to content

Instantly share code, notes, and snippets.

@TastyToast
Created December 11, 2012 01:33
Show Gist options
  • Save TastyToast/4255007 to your computer and use it in GitHub Desktop.
Save TastyToast/4255007 to your computer and use it in GitHub Desktop.
Kill White Space
String.prototype.killWhiteSpace = function() {
return this.replace(/\s/g, '');
};
$('.element').killWhiteSpace();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment