I dynamically change the background color of a div with the jquery .css() method. I also want to have a CSS hover selector on that same div that ch
.css()
hover
A simple way would be to add the important tag to your CSS.
div:hover { background-color: blue !important; };