I know there is plugin called .hasClass();
I have the following
$('#page_background, #header_background').ColorPicker({...
how would I check if page_background is clicked and not header_background?
This is what I have now, it won’t work.
$('#page_background, #header_background').ColorPicker({
onSubmit: function(hsb, hex, rgb, el) {
$(el).val(hex);
$(el).ColorPickerHide();
var id = this.id;
if(id == 'page_background')
$('body').css("background-color","#"+hex);
},
onBeforeShow: function () {
$(this).ColorPickerSetColor(this.value);
}
})
.bind('keyup', function(){
$(this).ColorPickerSetColor(this.value);
});
Working fiddle
As you are using this inside colorpicker
onSubmitfunctionwhere you get the element as
el, so to get theiduse