I'm trying to implement wheelColorPicker, and I came up with a problem only when using a JQuery version later than 1.7.1. (I'm currently using 1.10.2.)
When I use a later version, and move any of the sliders, then stop moving it (mouseUp), the colorPicker doesn't register the mouseUp, and therefore continues to move the slider (or dragger). I also get the following error when it moves:
Uncaught TypeError: Cannot read property 'blur' of undefined
I think the main thing I have to change, how the events unbind.
var blurEvents = $input.data('events').blur;
Not working:JSFiddle
Working: JSFiddle
(I couldn't get it to use external files with the code snippet, and the question has a limit of how many chars. That's why I didn't include a code snippet.)