diff --git a/jQuery_implementation/jqColor.js b/jQuery_implementation/jqColor.js index 243ef01..afb68f3 100644 --- a/jQuery_implementation/jqColor.js +++ b/jQuery_implementation/jqColor.js @@ -116,7 +116,9 @@ } colorPickers.current = colorPickers[index]; $(options.appenTo || document.body).append($colorPicker); - $colorPicker.show(colorPicker.color.options.animationSpeed); + setTimeout(function() { // compensating late style on onload in colorPicker + $colorPicker.show(colorPicker.color.options.animationSpeed); + }, 0); }); if (!colorPickers.evt || off) {