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?