JSFiddle - React, Tailwind, and code Playground

by kentaromiura

JavaScript

if(! ('innerText' in document.documentElement)){
    Object.defineProperty(Element.prototype, 'innerText', {
            get: function(){return this.get('text');},
            set: function(text){ this.set('text', text);}
    });
}

var test = document.createElement('div');
test.innerHTML = '<a>hi</a>';
alert(test.innerText)