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: 205

Filed under:
|
|
|
|

HTML:

<html>
<body>
    <textarea>Original Text</textarea>
    <button>Replace</button>
</body>
</html>??????????????????????????????????????????????????????????????????????

jQuery:

$(function() {
 $('button').click(function () {
     $('body').html($('body').html().replace('Original','New'));
 });
});
?

http://jsfiddle.net/r7MgY/

Can I highlight changes somehow with a fading yellow background maybe?

Thanks

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about JavaScript