(function ($) { function initColorPicker(widget) { widget.find('.my-color-picker').wpColorPicker({ change: _.throttle(function () { // For Customizer $(this).trigger('change'); }, 3000) }); } function onFormUpdate(event, widget) { initColorPicker(widget); } $(document).on('widget-added widget-updated', onFormUpdate); $(document).ready(function () { $('#widgets-right .widget:has(.my-color-picker)').each(function () { initColorPicker($(this)); }); }); }(jQuery));