Image renders in browser address bar, but not in HTML image tag -


i have html test page following image tag:

<img src="http://media.kohls.com.edgesuite.net/is/image/kohls/2021314?wid=130&amp;hei=130&amp;op_sharpen"> 

when open test.html in web browser, image not render. instead, shows broken image link icon.

http://media.kohls.com.edgesuite.net/is/image/kohls/2021314?wid=130&hei=130&op_sharpen

but if paste url of image directly browser address bar, displays image without issue. know how can display image in <img> tag? problem seems occur images kohl's department store. open graph image 1 of products (og:image).

i have tried replacing &amp; codes &, did not solve anything.

the problem server expecting literal &amp; instead of usual & delimit fields. in html, need escaped:

<img src="http://media.kohls.com.edgesuite.net/is/image/kohls/2021314?wid=130&amp;amp;hei=130&amp;amp;op_sharpen"> 

which gives:

http://media.kohls.com.edgesuite.net/is/image/kohls/2021314?wid=130&amp;hei=130&amp;op_sharpen


Popular posts from this blog