I am using jQuery to intentionally remove css classes from elements in a potentially large html table. Below is an explanation of why I am doing this.
I am currently doing it like this:
var tableElements = $("#TreeListElemente").find("*").addBack(); tableElements.removeClass("dxtl dxtl__B2 dxtl__B0 dxtlSelectionCell dxtlHeader dxtl__B3 dxtlControl dx-wrap dxtl__IM dxeHyperlink");
The table is sometimes large and has many elements. I would like to speed up page manipulation / DOM.
Javascript's built-in IE profiler tells me that especially .addBack () is slow. It seems to be doing some sort of sorting, which is completely optional for my use. Can i get rid of this? Is there any other way to include the selected item itself besides addBack ()?

IE javascript profiler: runtime for a collection of approximately 60,000 items. Including times are in the third column
Or is there another, more efficient way to remove classes from a large set of elements, with the choice of the element, itself, and all child elements?
Note. Why I do this: I use the DevXpress TreeList component, which comes with its own style. There is no easy way to "untie it" on the server side, so I decided to make this client side as shown above. In the end, I select TreeList, all child elements and remove the corresponding css classes from them.
Update / Solution 1
I successfully implemented the solution proposed by Frederick Hamidi, got a pretty good improvement:

IE javascript profiler: runtime for a collection of approximately 60,000 items using Frederick's suggestion. Including times are in the third column
The time required for the addBack () operation simply disappeared, remaining only different. This means an improvement of more than 4 times overall. Hooray!
Update / Solution 2
I also implemented the solution proposed by A. Wolf and got a slight improvement:

IE javascript profiler: runtime for a collection of approximately 60,000 elements, using A. Wolf's suggestion. Including times are in the third column
The time required for the find () operation disappeared, remaining only different. This means a slight improvement on my machine of the order of 10 with milliseconds. Cool!
This is the solution I'm using now:
$("#TreeListElemente, #TreeListElemente [class]").removeClass("dxtl dxtl__B2 dxtl__B0 dxtlSelectionCell dxtlHeader dxtl__B3 dxtlControl dx-wrap dxtl__IM dxeHyperlink");