Need some help with jQuery .css!

Hi! I’m having using the .css function with jQuery.

I have this link with the class “liqui”:

<li><a href="http://liquipedia.net/starcraft/Tasteless" class="liqui">Check his Liquipedia for more!</a></li>

And then a jQuery to give it some random stand-out css for test purposes:

      $(".liqui").css({
        "background-color": "yellow",
        "font-size": "200%"
      });

But it isn’t applying the css changes.

Am I doing something wrong?

Oh wow, that worked! Thank you!
I’ll be sure to keep jQuery stuff inside the JS module.