How to add exception in this jquery code?
$(function() {
$("table tr:nth-child(even)").addClass("striped");
});
this code is applying on all tables.
but for specific pages i don't want strip effect.
I've different body id on each page.
I want to know how to add exception for a id.
$(function() {
$("table tr:nth-child(even)").addClass("striped");
//I want to add exception to not to add striped class to only to page with <body id="nostrip">
});