JSFiddle - React, Tailwind, and code Playground

HTML

<div class="news">
    <iframe src="http://alelo.com.br/consulta-saldo-extrato-alelo.html" style="width:100%; height:100%; float:left;" frameborder="0" id="jones"></iframe>
</div>
<input type="text" id="piru">
<script>
    document.getElementById('jones').onload = function() {
        var valor = $('#jones').contents().find('#numero').val();
        alert(valor);
    }
</script>