I am working on a web application that is heavy on the client side, which is the first for me. I also use jQuery for the first time. I need my client code to track the model data that it retrieves through Ajax calls.
What is a good way to store this data? Is jQuery a good solution or is there a good general Javascript solution? I basically want to write model classes in Javascript (but I don't have to inherit). Right now, my jQuery code is the controller level, and the DOM and CSS form my layer. How do other people perform the model layer?
source share