jQuery call to set colors

218 Views Asked by At

I want to make use of an jquery statement.

http://jquerydoc.fancyproductdesigner.com/classes/jQuery.fn.fancyProductDesigner.defaults.elementParameters.html#prop-colors

I want to set specific colors, like this ---> Colorpicker, colors: "#000000,#ffffff"

var fpd = jQuery('#fancy-product-designer-' + productID + '').data('fancy-product-designer');
    fpd.getProduct();

I thought this was the right way, but it isn't.

fpd.defaults.colors(Colorpicker, colors: "#000000,#ffffff");

Link to the website

1

There are 1 best solutions below

0
On

I got it...

$('#fancy-product-designer-' + productID + '').on('elementAdded', function(evt, obj) {
obj.params.colors = ['#000000','#ffffff', '#125634'];
});