remove class from parent element with jQuery?

javascript, jquery

Solution

this.parent().removeClass("playing");

Problem

I can't figure out how to remove class from a parent element, basically I have a `<audio>` tag (from now on referred to as `this`) which is inside a div with `class="playing"` how can I remove this class? tried this, but than understood that it will remove class from audio element not it's parent div: ``` this.removeClass("playing"); ```

Original source