1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1.0" > <title>Highlight table row record on hover - jQuery</title> </head> <body> <h1>Highlight table row record on hover - jQuery</h1> <table border= "1" > <tr><th>No</th><th>Name</th><th>Age</th><th>Salary</th></tr> <tr><td>1</td><td>Kenshin Himura</td><td>28</td><td> $100 ,000</td></tr> <tr><td>1</td><td>Kenshin Himura</td><td>28</td><td> $100 ,000</td></tr> </table> <script type= "text/javascript" > $( "tr" ).not( ':first' ).hover( function () { $(this).css( "background" , "#195A72" ); }, function () { $(this).css( "background" , "" ); } ); </script> </body> </html> |