why does the images from my site http://allbusters.in doesn't l开发者_运维知识库oad in other sites like http://jsfiddle.net or http://jsbin.com
Here is the JSBin Link to the check. it shows an image from another site which loads perfectly http://jsbin.com/afahec
There is no such thing as </img>
.
Remove it and properly close the <img
tag with a />
, then your image appears:
<img src='http://www.lantiis.com/images/top.png' />
<img src='http://allbusters.in/wp-content/uploads/2011/07/facebook_32.png' />
http://jsbin.com/otayuy/
Why?
Because non-compliant code is unpredictable.
精彩评论