i have this example on js fiddle, its not loading the website that i wanted, i dont see what the problem is thanks :))
|
You can't load content from a domain other than the one you're on unless it's JSONP (JSON with a function wrapper)...you can't load plain HTML like you're trying, it's blocked for security reasons by the same origin policy. As an aside, the reason you get an error with |
|||||||||||
|
|
If you really must load a page from different website, you can always use an Or, for a server-side solution, if you're using PHP, you can have a look at the PHP cURL library. |
|||||
|