views:

37

answers:

1

Hello, is there a JQuery visual diff plugin that anybody knows about. Something like you would see on GitHub, BitBucket, or any standard source control site?

I have found this http://snowtide.com/jsdifflib and it looks pretty good, but wonder if there are more out there like it.

Thank You.

+1  A: 

I think you should consider doing a home made plugin, to do the Visual thing.

There is a jquery plugin which allow you to do $diff comparison like this one :

By using this you get a usable collection of elements:

$.diff(obj1, obj2) return  {mod: ..., add: ..., del: ...}

You could use jsfiddle to prototype your own plugin (http://jsfiddle.net/)

zor