I want to make a gadget that loads another page in an interval.
In IE 10 everything is working well, but as a gadget it does not work. Does anyone know where the problem is coming from?
<div class="obsah" id="obsah">
</div>
<script type='text/javascript' >
setInterval(obsah.innerHTML='<object type="text/html" data="obsah.html"></object>', 5000);
</script>