Hi,
I am working on a web application for Gear S3. The app needs to display an image from a static uRL. The URL is static but the content (image) is dynamic.
However, the internal browser does not refresh the page although I refresh the source of the img tag as below:
document.getElementById("img1").src=urls[1];
So, I changed the code adding a timestamp as:
document.getElementById("img1").src=urls[1]+'#'+timestamp;
That also did not work. And I tried this one:
document.getElementById("img1").src=urls[1]+'?c='+timestamp;
This one is worse. Because with this one , image is not even displayed once. But browser on PC (Chrome) , can display and refresh with both versions.
So there are 2 issues with the internal browser of Gear S3 (Tizen 3.0):
1. it does not display an available image if the URL has an extension like "&c=12345"
2. it does not refresh the image with above 3 url formats.
I have the following in my html header meta tags:
<meta http-equiv="Cache-Control" content="no-store" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache" />
is there a better meta tag which works for Gear S3 ?
Gear S3 - Tizen 3.0 - internal browser issues