localStorage のコンテンツのタイマーが必要です。
たとえば、動的に更新された DIV を取得しました
<div id="news"><p>test</p></div>
そして、次のコードを使用して、html ブロックとして localStorage に追加することができました。
$(function() {
localStorage["homeNews"] = JSON.stringify($("#news").html());
});
$(function() {
if (localStorage["homeNews"] != null) {
var contentsOfNews = JSON.parse(localStorage["homeNews"]);
$("#news").html(contentsOfNews);
}
});
localStorage["homeNews"] にタイム スタンプを追加する必要があり、現在の時刻と localStorage のタイム スタンプを確認して 5 分後に削除するスニペットを追加する必要があります。
The fiddle is here: http://jsfiddle.net/Rn4NC/