I have an HTML table with large number of rows, and I need to right align one column.
I know the following ways,
.. |
-
2021-02-04 23:55
Use jquery to apply class to all tr unobtrusively.
$(”table td”).addClass(”right-align-class″);
Use enhanced filters on td in case you want to select a particular td.
See jquery
|