jQuery was designed from the get-go to be extensible via plugins. This is one of jQuery's greatest strengths.
The core jQuery library was kept purposefully focused on providing support for the types of things people need to do on most pages, and this keeps its footprint to a minimum. After all, no sense downloading a bunch of script that's never going to be used, right?
The plugins provide the extra stuff, and there are literally dozens and dozens of plugins to do everything from form entry validation, to drag and drop, to date pickers and beyond.
Moreover, it's very easy to write your own code as jQuery plugins so that the code on your page follows a consistent style and
pattern, and so that it can easily leverage the core jQuery capabilities.
The book includes a chapter on how to write jQuery extensions and plugins, and a chapter that takes a survey of some of the more popular plugins.