We recently built a web app using Prototype, making a fair amount of use of its Class.Create() functionality. Right now, we're considering migrating to jQuery as it seems to be considered a 'better' library. I've been doing some reading on the topic and found out that jQuery does not have straightforward built-in support for class-creation like Prototype does. Of course, there's still the .prototype and the jQuery.extend (as mentioned in http://stackoverflow.com/questions/79477/how-to-create-an-object-oriented-class-in-jquery), but after some more searching, I got the feeling that jQuery doesn't really 'want' you to script this way...
The same page has a post mentioning John Resig's Classy plugin, which looked great to me. However, the page states that it was actually an April Fools Day joke, and that Resig actually advises not to use the code. I'm happy to oblige, but I'd like to understand what the reason for all this is, and, of course, what it is they DO want you to do instead. Can someone enlighten me?
-edit-
Thanks for the interesting answers. For the sake of clarity: does this mean it is fine to rewrite the classes I made in Prototype to the jQuery way of 'shaping' a class, and still use them in the same 'manner' as before? Or is this still considered bad practice, and should I use a different approach?