テキストを含む DIV があり、マウスオーバーでテキストを変更し、マウスアウト後にテキストを復元したいと考えています。次のように。
<div class="test">Text of Mouseout</div>
<div class="test">Text of Mouseover</div>
次のようにしようとしましたが、マウスオーバーするとテキストが変更されますが、マウスアウト後に復元されません:
$(".test").hover(
function() {
var $original = $(this).clone();
$(this).html("Text of Mouseover");
},
function() {
$(this).html($original);
}
);