Reputation: 1
Is there any way to make div or an iframe not to reload at page refresh?
Upvotes: 0
Views: 3561
Reputation: 4957
normal scenerio is Refreshable part should be in div/iframe. you shoud follow that, there is no way what you are trying to do...
Upvotes: 0
Reputation: 6689
Put this in your iframe to avoid caching:
<head>
<meta http-Equiv="Cache-Control" Content="no-cache">
<meta http-Equiv="Pragma" Content="no-cache">
<meta http-Equiv="Expires" Content="0">
</head>
Upvotes: 1