1234567891011121314 |
- $(function() {
- /*
- * Sort your columns. You can also change settings here.
- */
-
- $('#example tbody:tr').hover(function() {
- $(this).css('background-color', '#000 !important');
- },
- function() {
- $(this).css('background-color', '#39B3D7 !important');
- });
- });
|