I'm trying to change the color of a font based on the background-image
of the page.
I've looked through every posting I could find about this but I can't figure out the correct syntax for my specific application.
I'm trying to write a function that says "If the background-image
of body
ends with "-dark.png" add the class .dark
to nav
.
Here's what I have:
function colorChange(){
var b = $('body').css('background-image');
if (b $==='-dark.png'){
$("nav").addClass("dark");
}
}
I appreciate any help!
The
$==
operator is not valid in JS. To find out if a string ends with a specific set of characters you can use a regex:Or also
substr()
: