custom.js 308 B

1234567891011121314
  1. $(function() {
  2. /*
  3. * Sort your columns. You can also change settings here.
  4. */
  5. $('#example tbody:tr').hover(function() {
  6. $(this).css('background-color', '#000 !important');
  7. },
  8. function() {
  9. $(this).css('background-color', '#39B3D7 !important');
  10. });
  11. });