To toggle a style on table cells: : Table « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- Table
To toggle a style on table cells:
jQuery Code
$("td").toggle(
function () {
$(this).addClass("selected");
},
function () {
$(this).removeClass("selected");
}
);
Related examples in the same category