is the following, I need to access a site and search through my page. I'm trying this way:
<html> <script type="text/javascript" src="js/jquery.js"> </script>
<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> </html>
I can not do anything on the page inside the iframe ... Help!