Trying to change the color on all the paths in an svg group except one path that has been given the class "static". I have tried both of the following:
$('.groupClass').children().not('.static').css('fill', '#FF0')
In this case, the not selector is ignored. All layers change color.
I have also tried:
$('.groupClass').children('not(.static)').css('fill', '#FF0')
In this case, color change stops working.
You can see the actual project here, to see the svg structure: http://www.thelionscall.com/wp-content/Temp/ i am trying to change the color on only the bloom of the rose.
Thank you for your help.