I found this gist to detect changes on specified fiels of a object : https://gist.github.com/3138469
But it bind an event only on one field.
Someone know a function or a tricks to detect change on an entire Javascript Object ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
2019 Update: These days this can be achieved using Proxy API in a much more efficient manner. The on-change library uses the Proxy API behind the scene to make this even easier.
2012 Update: I’ve just noticed that the author of Watch.js is referencing a library with much broader browsers’ support. MultiGetSet.JS
When I want to achieve this I usually use Watch.js, you can watch a whole object or one attribute.