This is a really strange problem. For IE, we use pointer events instead of mouse events because they’re better supported.
But it looks like us registering ‘pointerdown’ somehow breaks jquery’s ‘mousedown’? I looked into it a little bit, but I have no idea why that is happening.
So, there are a few workarounds.
You can check Cesium.FeatureDetection.supportsPointerEvents() and use on(‘pointerdown’, …) when that returns true
Or, we also have a ScreenSpaceEventHandler class for mouse event handling. You could use that to avoid any other conflicts.