Check out these two fiddles: fiddle 1 and fiddle 2
The only variation between the two is a single CSS property in .category
-webkit-user-select: none;
In fiddle 2, when you click and drag an element, the cursor remains as a pointer instead of changing to a text cursor. I want this behavior!
Surprisingly, when running the EXACT same HTML, CSS, and JS outside of JSFiddle in my browser, it reverts back to behaving like fiddle 1. Why does this happen?
I was under the impression that JSFiddle mirrors the properties of the user's browser, so I'm puzzled why fiddle 2 works how I want it to on the platform but not when directly run in a browser.
Any insights? Or perhaps solutions to maintain the pointer cursor consistently?