I'm trying to extract data from certain web sites that keep all data in Javascript generated tables.
I thought getting the content of each Table or TableCell element by using javascript in address line of a browser could do the trick.
However, I failed at the first obstacle!
After putting
javascript: tbls = document.getElementsByTagName("table"); nmbroftables=tbls.length; alert(nmbroftables)
in address line of a browser I get the message that number of tables is 0 although the page of interest is full of tables and Web Developer add-in for Mozilla cleary recognizes them and can outline them!
The page of interest is hr and you can click on Ponedjeljak (Monday), Utorak (Tuesday) and so on to see offers for that day created dynamically and put into HTML tables!
So what should I do to retrieve that content?
Many thanks!
I thought getting the content of each Table or TableCell element by using javascript in address line of a browser could do the trick.
However, I failed at the first obstacle!
After putting
javascript: tbls = document.getElementsByTagName("table"); nmbroftables=tbls.length; alert(nmbroftables)
in address line of a browser I get the message that number of tables is 0 although the page of interest is full of tables and Web Developer add-in for Mozilla cleary recognizes them and can outline them!
The page of interest is hr and you can click on Ponedjeljak (Monday), Utorak (Tuesday) and so on to see offers for that day created dynamically and put into HTML tables!
So what should I do to retrieve that content?
Many thanks!