As I mentioned in my last post, I have been working on my JavaScript MVC/MVP framework lately. Just finished searching around and have not found anything close to what I have done. Most of the implementations I have seen were some complicated server-side code that referred to the MVC chart, but were far from being browser only MVC solution.
What I want to see is something to the level of ExtJs which is JavaScript only, platform independent JavaScript MVC framework, where in the row form, each restful URL (ideally hashed) results in loading 3 files (either separately, or in one JSON-nized request) model being pure JSON data representation, view which can be edited in .html file allowing for loops, if statements, and HTML helpers, and finally controller that allows for using jquery and its plugins. Such approach must be so straight forward, that anybody with basic knowledge of jquery should be able to implement it. No server side, platform dependent installation, no fancy UI frameworks.
I am pretty close to finishing up my code samples... so stay tuned in :)
UPDATE: Here is the JavaScript jQuery MVC framework that I just released.