I want to add a Class to all images except for two specific ones. Because i don't want to add that Class to the logo for example.
This is what i have now:
$('img').addClass('class_two');
The images where i don't want to add this class on are:
<img id="id_1" src="danielgotzlogo.png" alt="danielgotzlogo">
<img id="id_2" src="xxsbanner.jpg" alt="#">
But this adds it to all images. How can i not add the Class to specific ones?