It may not be your business, because I donโt know if you use Sort or not, but
I had a similar problem with IE when I used JQueryUI Sortable to handle drag and drop. I had several UL elements on a page with several LI elements, and I dragged between different UL elements.
I did most of my development in Chrome, and everything was fine. When I switched to IE for some testing, the result was as you described.
It so happened that during development, at some point, I specified the "connectWith" parameter (so that I could drag the selected items from one to another) and the "items" parameter (so that I could tell which elements inside the element should be sortable).
Now, when I debug the source code for the JQuery UI, it manipulates the DOM quite a lot under the covers, for example, removes and inserts nodes and binds various events and so on. It turns out that when I had both the options that I mentioned above, in the JQuery code, the UI did some kind of looping cycle in a material type cycle and the number of times it set the position and style of the same element (count * ConnetWith Count elements).
I had some CSS style for working (without scrolling the title, footer and sidebar menu), and since the JQuery user interface controlled the nodes, it made the browser execute the layout and recalculate the style requests, causing the CSS to reapply. The more elements I saw on the page, the more it was necessary to lay out and stylize. This can be a problem for IE when it has a lot of attachments, for example, with a large number of rows in tables, but most of the time it is not so noticeable. However, this is due to the almost exponential increase in layout requests caused by the JQuery UI processing / processing cycle, and I had a real problem with IE. I worked with a 1920 x 1080 screen, so it took about 40 seconds on a fast machine before the CPU stopped going crazy. In other browsers, it was only about a second or so.
It helped change the styles of the header, footer and sidebar. But more importantly for me, when I removed the โItemsโ option from the code shell in the style update cycles to significantly reduce the processor, only a short time, and then returned to 0-1%.