webcam refreshing image in iframe not working IE
Posted
by
Nix
on Stack Overflow
See other posts from Stack Overflow
or by Nix
Published on 2012-10-24T22:57:59Z
Indexed on
2012/10/24
23:00 UTC
Read the original article
Hit count: 364
I'm trying to show images from this webcam http://regacam.usz.ch/cgi-bin/guestimage.html on an html page by putting an iframe in pointing to another page that has an image tag in it. But it isn't working in IE (I just see a little cross where the image should be), Firefox is ok. Here the page with the image in:
<html>
<head>
<meta http-euqiv="refresh" content="5">
</head>
<body>
<img src="http://regacam.usz.ch/cgi-bin/faststream.jpg?stream=full&fps=0.01667&rand=295543" width="200" height="150"/>
</body>
<html>
and the iframe:
<div id="rightcontainer">
<iframe id="rightframe" src="zurich.html" name="content" frameborder="0"></iframe>
</div>
I tried a different webcam elsewhere and that works ok in both browsers. Is there something odd about the one in my example? I got the link in src by right-clicking and copying the image location - is that the right way to go about it?
© Stack Overflow or respective owner