I'm building a website where many of the pages are very interactive without having any communication with the web server. Basically, a page represents a kind of DHTML interface, where use users can click on various divs to move them around and perform other actions. In the end, the user is able to save the "state" of all divs on the screen and only then the HTTP request is sent to the server.
I'm trying to use MVC approach (via CodeIgniter) and these actions are mostly handled by jQuery JQuery and a few custom JavaSctipt JavaScript functions I wrote. I have a lot of JavaSctipt JavaScript code that covers the logic. Currently, all the code is in the View of CodeIgniter's MVC, but I somehow feel that is wrong. I'm thinking I should move some of the code to some kind of controller, but a JavaScript one instead of PHP controller provided by CI.
Should I create some kind of a parallel MVC in JavaScript?
