I want to create a web app which organizes and analyses information from another website. The other website has no API, so I want to just take all the HTML from it (after allowing its scripts to run) and have that available to me for picking apart using jquery for my web app.
I realize that PHP or other server-side language is the true answer to this issue, but I only know front-end stuff and just want to make something quick and dirty. No one is using this but me.
The only way I can think to achieve this right now is by using a hidden iframe. Is there anything (relatively) more elegant than this solution?