Hi at the minute I am selecting classes like so…
$('.colorPick').each(function() {
});
Is there a way to select a class name with no event attached, ie in this case
.each
I have tried,
$('.colorPick').(function() {
});
But it doesn’t work?
Maybe this can be used to filter out elements with events already attached: How to check if any JavaScript event listeners/handlers attached to an element/document?