|
|
BOOK ![]() jQuery Reference Guide See More BOOK ![]() Learning jQuery : Better Interaction Design and Web Development with Simple JavaScript Techniques See More |
Using jQuery Script for Creating Dynamic Table of Contents
This article by Karl Swedberg and Jonathan Chaffer, shows the basic categories of jQuery methods, and how they come into play within a jQuery script. To examine how the different aspects of jQuery are utilized, we will build a small script that will dynamically extract the headings from an HTML document and assemble them into a table of contents for that page. A typical jQuery script uses a wide assortment of the methods that the library offers. Selectors, DOM manipulation, event handling, and so forth come into play as required by the task at hand. In order to make the best use of jQuery, we need to keep in mind the wide range of capabilities it provides. A Dynamic Table of ContentsAs an example of jQuery in action, we'll build a small script that will dynamically extract the headings from an HTML document and assemble them into a table of contents for that page. Our table of contents will be nestled on the top right corner of the page: ![]() We'll have it collapsed initially as shown above, but a click will expand it to full height: ![]() At the same time, we'll add a feature to the main body text. The introduction of the text on the page will not be initially loaded, but when the user clicks on the word Introduction, the introductory text will be inserted in place from another file: ![]() Before we reveal the script that performs these tasks, we should walk through the environment in which the script resides. Obtaining jQueryThe official jQuery website (http://jquery.com/) is always the most up-to-date resource for code and news related to the library. To get started, we need a copy of jQuery, which can be downloaded right from the home page of the site. Several versions of jQuery may be available at any given moment; the latest uncompressed version will be most appropriate for us. No installation is required for jQuery. To use jQuery, we just need to reside it on our site in a public location. Since JavaScript is an interpreted language, there is no compilation or build phase to worry about. Whenever we need a page to have jQuery available, we will simply refer to the file's location from the HTML document. Setting Up the HTML DocumentThere are three sections to most examples of jQuery usage— the HTML document itself, CSS files to style it, and JavaScript files to act on it. For this example, we'll use a page containing the text of a book: <?xml version="1.0" encoding="UTF-8" ?>
The stylesheet is loaded immediately after the standard <head> elements. Here are the portions of the stylesheet that affect our dynamic elements: /* ----------------------------------- After the stylesheet is referenced, the JavaScript files are included. It is important that the script tag for the jQuery library be placed before the tag for our custom scripts; otherwise, the jQuery framework will not be available when our code attempts to reference it.
Writing the jQuery CodeOur custom code will go in the second, currently empty, JavaScript file which we included from the HTML using <script src="dolittle.js"type="text/javascript">< jQuery.fn.toggleNext = function() {We now have a dynamic table of contents that brings users to the relevant portion of the text, and an introduction that is loaded on demand. Script DissectionThis script has been chosen specifically because it illustrates the widespread capabilities of the jQuery library. Now that we've seen the code as a whole, we can identify the categories of methods used therein.
Selector ExpressionsBefore we can act on an HTML document, we need to locate the relevant portions. In our script, we sometimes use a simple approach to finding an element: $('#introduction')This expression creates a new jQuery object that references the element with the ID introduction. On the other hand, sometimes we require a more intricate selector: $('#introduction > h2 a')ere we produce a jQuery object potentially referring to many elements. Elements are included if they are anchor tags that are descendants of <h2> elements, which are themselves children of an element with the ID introduction. These selector expressions can be as simple or complex as we need. DOM Traversal MethodsSometimes we have a jQuery object that already references a set of DOM elements, but we need to perform an action on a different, related set of elements. In these cases, DOM traversal methods are useful. We can see this in part of our script: this.toggleClass('arrow-down')Because of the context of this piece of code, the keyword this refers to a jQuery object (it often refers instead to a DOM element). In our case, this jQuery object is in turn pointing to the <h3> heading of the table of contents. The .toggleClass method call manipulates this heading element. The subsequent .next() operation changes the element we are working with, though, so that the following .slideToggle method call acts on the <div> containing the table of contents rather than its header. DOM Manipulation MethodsFinding elements is not enough; we want to be able to change them as well. Such changes can be as straightforward as changing a single attribute: $chapterTitle.attr('id', chapterId);Here we modify the ID of the matched element on the fly. Sometimes the changes are further-reaching, on the other hand: $('<div id="page-contents"></div>')This part of the script illustrates that the DOM manipulation methods can not only alter elements in place, but also remove, shuffle, and insert them. These lines add a new heading at the beginning of <div id="page-contents">, insert another <div> container at the end of it, and place the whole thing at the beginning of the document body. Event MethodsEven when we can modify the page at will, our pages will sit in place, unresponsive. We need event methods to react to user input, making our changes at the appropriate time: $('#introduction > h2 a').click(function() {In this snippet we register a handler that will execute each time the selected anchor tag is clicked. The click event is one of the most common ones observed, but there are many others. There is also a very special event method, .ready: $(document).ready(function() {This method allows us to register behavior that will occur immediately when the structure of the DOM is available to our code—even before the images have loaded. Effect MethodsThe event methods allow us to react to user input; the effect methods let us do this with style. Instead of immediately hiding and showing elements, we can do so with an animation: this.toggleClass('arrow-down')This method performs a fast sliding transition on the element, alternately hiding and showing it with each invocation. AJAX MethodsMany modern websites employ techniques to load content when requested without a page refresh; jQuery allows us to accomplish this with ease. The AJAX Methods initiate these content requests and allow us to monitor their progress: $('#introduction > h2 a').click(function() {Here the .load method allows us to get another HTML document from the server and insert it in the current document, all with one line of code. Miscellaneous MethodsSome methods are harder to classify than others. The jQuery library incorporates several miscellaneous methods that serve as shorthand for common JavaScript idioms. Even basic tasks like iteration are simplified by jQuery: $('#content h2').each(function(index) {The .each method seen here steps through the matched elements in turn, performing the enclosed code on all of matched elements. In this case, the method helps us to collect all of the headings on the page so that we can assemble a complete table of contents. Plug-In APIWe need not confine ourselves to built-in functionality either. The plug-in API that is part of jQuery allows us to augment the capabilities already present with new ones that suit our needs. Even in the small script we've written here, we've found the use for a plug-in: jQuery.fn.toggleNext = function() {This code defines a new .toggleNext jQuery method that slides the following element open and shut. We can now call our new method later when needed: $('#page-contents h3').click(function() {Whenever code could be reused outside the current script, it might do well as a plug-in. SummaryWe've now seen a complete, functional jQuery-powered script. This example, though small, brings a significant amount of interactivity and usability to the page. The script has illustrated the major types of tools offered by jQuery, as well. We've observed how the script finds items in the DOM and changes them as necessary. We've witnessed response to user action, and animation to give feedback to the user after the action. We've even seen how to pull information from the server without a page refresh, and how to teach jQuery brand new tricks in the form of plug-ins.
About The AuthorsThis article has been adapted from Chapter 1 from the book jQuery Reference Guide by Karl Swedberg and Jonathan Chaffer.Karl Swedberg Karl Swedberg is a web developer at Structure Interactive in Grand Rapids, Michigan, where he spends much of his time implementing design with a focus on "web standards"—semantic HTML, well-mannered CSS, and unobtrusive JavaScript. Before his current love affair with web development, Karl worked as a copy editor, a high-school English teacher, and a coffee house owner. His fascination with technology began in the early 1990s when he worked at Microsoft in Redmond, Washington, and it has continued unabated ever since. Karl's other obsessions include photography, karate, English grammar, and fatherhood. He lives in Grand Rapids with his wife, Sara, and his two children, Benjamin and Lucia.
In the open-source community, Jonathan has been very active in the Drupal CMS project, which has adopted jQuery as its JavaScript framework of choice. He is the creator of the Content Construction Kit, a popular module for managing structured content on Drupal sites. He is responsible for major overhauls of Drupal's menu system and developer API reference. Jonathan lives in Grand Rapids with his wife, Jennifer.
| TOP TITLES ![]()
| ||||||||||||||||
| ||||||