JSFiddle - React, Tailwind, and code Playground

HTML

<html>
    <body>
        <!-- Declare the VML namespace -->
        <xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v" />
        
        <v:oval id="foo" style="height:75pt;width:100pt;behavior:url(#default#VML);display:inline-block" fillcolor="red" />
    </body>
</html>

JavaScript

$(function() {

    $('#foo').attr({
        filled: false
    });

});