In this url: http://es.finance.yahoo.com/q/cp?s=%5EJKSE If I test this selector expresion in the console...
$('#yfncsumtab .yfnc_tableout1 tr td table tbody')
...it returns html table (but not in an array):
<table>...</table>
Can anybody explain me why I am not obtaining an array contaning the html table??? That's the reason why I cannot apply .each(), .text() ... I think.
When I test the same selector to another website's table it always returns:
[<table>...</table>]
And with that response, I can apply .each() o whatever jQuery method.