user227128
user227128

Reputation: 1

Make iframe not to reload at page refresh

Is there any way to make div or an iframe not to reload at page refresh?

Upvotes: 0

Views: 3561

Answers (2)

Lalit
Lalit

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

Trevor
Trevor

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

Related Questions