We use simpleColorPicker jQuery plugin.
We had an issue that function .live() is depricated in jQuery 1.9.
We solved it by replacing following line:
Line 56: $(‘body’).live(‘click’, function() {
Correction: $(document).on(‘click’, ‘body’, function() {