Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Latest commit

 

History

History
59 lines (40 loc) · 2.51 KB

README.md

File metadata and controls

59 lines (40 loc) · 2.51 KB

align-column

jQuery table formatting plugin for decimal alignment and other prettifying of table columns.

Features

Transform hard-to-compare right-aligned numeric tables:

to easier to read:

Center based on characters besides a decimal separator:

Scientific tables can be much improved:

Usage

  <script type="text/javascript" src=".../jquery...min.js"></script>
  <script type="text/javascript" src=".../jquery.align-column.js"></script>

To align numeric columns of an HTML table, use:

  $('table').alignColumn(3); // column index

Multiple columns can be aligned at once:

  $('table').alignColumn([4,5]);

By default, columns are aligned by the decimal point (or a best guess as to where it is). To center by some other character or characters:

  $('table').alignColumn(2, {center: ':'});

Examples

References and Related Projects