Created
October 11, 2017 07:08
-
-
Save ingozoell/b26da8674879cb81a760bac295e4c503 to your computer and use it in GitHub Desktop.
Remove " " table td
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("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