I have two arrays. In each array I have objects with lots of properties but no methods. I need to see if array 1 is equal with array 2.
One way to do that would be t
JQuery has a function called jQuery.param() which serializes objects
You can compare objects or arrays of objects like so,
$.param( originalObj ) == $.param( modifiedObj )
It's very powerful in conjuction with jQuery.extend() which can be used to clone objects