JSFiddle - React, Tailwind, and code Playground

by oroce

HTML

<iframe name="hidden-iframe" width="100" height="100">
    <html>
        <head>
            <style>
                a:visited{
                    color:red !important;
                }
            </style>
        </head>
        <body>
            <a href="" id="is-porn-mode" target="hidden-iframe">almafa</a>
        </body>
    </html>
</iframe>

CSS

a:visited{
    color:red !important;
}

JavaScript

var win = $("iframe")[0].contentWindow;
console.log(win, win.document);
var a = win.document.getElementById("is-porn-mode");
a.click();
console.log(a.style);
//alert( isPornMode );