I am trying to get HTML code from a webpage that is not in the same domain. The html text is analyzed and summarizes the recipe (recipe name, main ingredients, number of steps) found on this page from which the HTML code was.
The user can then click the link and go to this web page outside the domain to view the recipe.
I am aware of the "same outcome" policy, but does this apply if the HTML code from the web page is outside the internal domain? I imagine this is exactly the same as getting XML, so it is legal and allowed, right?
Is there a way to get HTML text / code from a domain outside my internal domain?
The use of Javascript and JQuery is to limit the number of queries and server storage by executing user queries for each recipe and parsing client-side HTML. This stops the bottlenecks on the server side, and also means that I do not need to go through the server and delete old obsolete recipes.
I am open to solutions / suggestions in any programming language or API, etc.
source share