Forum Discussion
ealtinta
6 years agoNew Member
web content tile refresh does not work
Hi, I am trying to show news feed items from an RSS feed inside a web content tile in an online dashboard. If I don't refresh the content it works without problems. When I add the location.re...
- 5 years ago
I found a solution. The following code works.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
margin: 0;
overflow: hidden;
}
#iframe1 {
position:absolute;
left: 0px;
width: 100%;
top: 0px;
height: 100%;
}
</style></head>
<body><iframe id="iframe1" src="//rss.bloople.net/?url=..........detail=-1&limit=10&showtitle=false&type=html" frameborder="0"></iframe>
<script>
window.setInterval("reloadIFrame();", 60000);
function reloadIFrame() {
document.getElementById("iframe1").src="//rss.bloople.net/?url=.........detail=-1&limit=10&showtitle=false&type=html";
}
</script></body>
</html>
v-diye-msft
Community Support
6 years agoHi ealtinta
Based on the test, we've encounter the same issue as yours. will do further research nand keep you updated.
ealtinta
6 years agoNew Member
Thank you very much. I am waiting for your answer.