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
if you just need to delete the inline style you can use
$("#yourselector").attr("style", " ");
It will replace your inline style with style=" "
style=" "