Skip to content

Instantly share code, notes, and snippets.

@veritstudio
Last active August 20, 2018 13:19
Show Gist options
  • Select an option

  • Save veritstudio/f6f0392faa3be179e8ed7ca88d0008f1 to your computer and use it in GitHub Desktop.

Select an option

Save veritstudio/f6f0392faa3be179e8ed7ca88d0008f1 to your computer and use it in GitHub Desktop.
Convert decimal to fraction
jQuery.each(jQuery('td'), function (index, value) {
if (jQuery(value).text().match(/\.|,5/g) !== null) {
jQuery(value).html(
jQuery(value).text().replace(/\.|,5/g, "") +
"<i class=\"fraction\">&frac12;</i>"
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment