$j(\'.select-all-these:not(.except-these):nth-child(3n)\');
I\'m trying to select every third item that doesn\'t have a particular class. This is m
Best easy way =)
$('table tr:not(.class)').eq(1);
Good luck =)