Highlight changes?
Posted
by Nimbuz
on Stack Overflow
See other posts from Stack Overflow
or by Nimbuz
Published on 2010-05-19T07:40:36Z
Indexed on
2010/05/19
8:00 UTC
Read the original article
Hit count: 219
HTML:
<html>
<body>
<textarea>Original Text</textarea>
<button>Replace</button>
</body>
</html>??????????????????????????????????????????????????????????????????????
jQuery:
$(function() {
$('button').click(function () {
$('body').html($('body').html().replace('Original','New'));
});
});
?
Can I highlight changes somehow with a fading yellow background maybe?
Thanks
© Stack Overflow or respective owner