JSFiddle - React, Tailwind, and code Playground

by jcubed111

HTML

<form><input required type='password'><input onclick='setTimeout(a,500)' type='submit'></form>
<div id='a'>
    
</div>

CSS

input::-webkit-input-speech-button {
  -webkit-appearance: none;
  font-family: impact;
  padding: 20px;
    color:#F00;
}

JavaScript

function a(){
    b=document.getElementsByTagName('div');
    for(index in b){
        document.getElementById('a').innerHTML+='"'+b[index].innerHTML+'"<br/>';
        b[index].innerHTML='k';
    }
}