Remove a CLASS for all child elements
This should work:
$("#table-filters>ul>li.active").removeClass("active");
//Find all `li`s with class `active`, children of `ul`s, children of `table-filters`
You can also do like this :
$("#table-filters li").parent().find('li').removeClass("active");