Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created October 11, 2017 07:08
Show Gist options
  • Save ingozoell/b26da8674879cb81a760bac295e4c503 to your computer and use it in GitHub Desktop.
Save ingozoell/b26da8674879cb81a760bac295e4c503 to your computer and use it in GitHub Desktop.
Remove " " table td
$("table").find("td").each(function() {
var $this = $(this);
$this.html($this.html().replace(/ /g, ''));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment