SO, I don't do a whole lot of front end, and I am sure this is super simple. I just haven't been able to see an answer so far.
I have a jQuery function that triggers some CSS changes.
$(".nav-link").css({ set of changes });
But what if I want to add some properties to the hover pseudo?
I tried
$(".nav-link:hover").css({ ... });
but that doesn't seem to work.
Thanks