Display another website's dynamic image on mine
This statement works only on Opera :
<im开发者_如何转开发g src="http://www.moviecovers.com/getjpg.html/LE%20CHARME%20DISCRET%20DE%20LA%20BOURGEOISIE.jpg"</img>
How should I do to make it work on Firefox ?
When I open straightly this URL on my browser : it displays the expected image but when I integrate this into my webpage it displays a 404 image error...
Is there a JavaScript/AJAX/Jquery way to load this can of image?
It seems the moviecovers wants a POST request...
Your HTML is incorrect. It should be:
<img src="http://www.moviecovers.com/getjpg.html/LE%20CHARME%20DISCRET%20DE%20LA%20BOURGEOISIE.jpg" />
Assuming that wasn't a typo of course.
If I fix the html and remove the UTF8 from the url, I get
<img src="http://www.moviecovers.com/getjpg.html/LE%20CHARME%20DISCRET%20DE%20LA%20BOURGEOISIE.jpg" />
which works by redirecting me to the larger version of
This one
(source: moviecovers.com)
That said:
"The covers offered for viewing and downloading by MOVIECOVERS.COM are offered free and STRICTLY for use only within the family - Any commercial use or outside the limits of the framework is completely prohibited - Abstracts and posters the properties of their respective rights holders."
精彩评论