I marked this as Community Wiki since this might be more on the philosophical side of things, but I've been thinking about this on and off for a while.
Basically the idea is this: With MVC you have the controller that churns information, the model that carries it, and the view that displays it. It's a simple separation on paper. If I have a grid of users, the controller gets the list, the model carries it, and the view displays it. If I want to edit one, I click a link and am taken to another page. When I'm done editing, the view sends the information off through a model to the controller.
The view itself should be stupid right? I take a model and display it, then (if needed) send it back if done. However, jQuery allows a lot more than just validation messages or drag and drop. I can allow a view to call any controller it feels like to manipulate the data and display the result.
Now this isn't entirely different from the non-jQuery way as they both involve a controller and a view and talking between. However, doesn't this make the view itself become less specific in what it displays (Say an edit form for editing or a grid for displaying) and much more all inclusive like a WebForm page? Kind of substitutes in for the WebForms idea of postback and events.