Подскажите пожалуйста,
есть функция attrchange ,которая была подключена через плагин (функция реагирует на изменения DOM элемента).
$(".inner_wrapper .color_picker").attrchange({
trackValues: true, /* Default to false, if set to true the event object is updated with old and new value.*/
callback: function (event) {
/* event - event object, event.attributeName - Name of the attribute modified, event.oldValue - Previous value of the modified attribute */
return HSV(event);
}
});