How do I remove a site from IIS7 using JavaScript?

Is it possible to check the content of an external site using JavaScript?

  • Is it possible to pull data from elements on an eternal site such as <title>, <h1>, <h2>, etc using JavaScript.

  • Answer:

    JavaScript is limited by same origin policy and therefore cannot access external or remote site content.

Rick Waldron at Quora Visit the source

Was this solution helpful to you?

Other answers

Only if you make an AJAX request to your server which can then do anything any computer can do, including fetching data from an external site, and passing that back in the AJAX response. There's even sites like http://jsonlib.com that present JSONP APIs to do exactly that, so you can do cross-domain requests without writing any server-side code.

Han Wei

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.