Search Results

1
vote

CSS to make an empty cell’s border appear?

Another way of making sure there is data in all cells: $(document).ready(function() { $("td:empty").html("&nbsp ;"); }); …