Problem with Embedded HTML

I have a problem when I add in a layout an Embedded HTML : it doesn’t refresh !
Last year, with another version of Xibo, and another Windows version, and another PC, it was working very well, but not now.
I now use for the windows client 1.7.6 a mini-pc under Windows 10.
When I put in a layout design the embedded code, it works on server and on client, but the nex day, the inside result or value didn’t change and didn’t refresh (both on server and on client), even if my layout timeout is set to 300 seconds.

What do I have to do ? Is this a bug ?

I can detail the embedded code : I simply try to put a meteo widget (http://www.meteocity.com/widget/) on a screen area of my layout.
Like this :

<div id="cont_MzMwNjN8NXwxfDR8MXwwMDAwMDB8MXxGRkZGRkZ8Y3wx"><div id="spa_MzMwNjN8NXwxfDR8MXwwMDAwMDB8MXxGRkZGRkZ8Y3wx"><a id="a_MzMwNjN8NXwxfDR8MXwwMDAwMDB8MXxGRkZGRkZ8Y3wx" href="http://www.meteocity.com/france/bordeaux_v33063/" target="_blank" style="color:#333;text-decoration:none;">Météo Bordeaux</a> ©<a href="http://www.meteocity.com">meteocity.com</a></div><script type="text/javascript" src="http://widget.meteocity.com/js/MzMwNjN8NXwxfDR8MXwwMDAwMDB8MXxGRkZGRkZ8Y3wx"></script></div>

As you can see, the embedded html is quite simple.

Thanks to help me, because it would be very usefull to work it well again.

I’m guessing you’ll need to throw a “location.reload(true)” into the JavaScript to prevent it from always using the cached results.

More info about that JavaScript command can be found here.
http://www.w3schools.com/jsref/met_loc_reload.asp

Hi,

Put in the section “Head content to Embed” this script.
The timerefresh is in millisecond.

> <script type="text/JavaScript">

> <!--

> function TimedRefresh( t ) {

> setTimeout("location.reload(true);", t);

> }

> //   -->
> </script>
> <body onload="JavaScript:TimedRefresh(110000);">