I have a menu with links. The links are placed inside a table. Each link is placed in a . I want to change the background color of the
-
2021-01-27 18:14
Try this:
$(function() {
$('td').click(function() {
$(this).css('backgroundColor', '#EDEDED');
});
});
| |