The Artima Developer Community
Sponsored Link

Java Community News
Bear Bibeault on jQuery

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Frank Sommers

Posts: 2642
Nickname: fsommers
Registered: Jan, 2002

Bear Bibeault on jQuery Posted: Jul 12, 2007 3:34 PM
Reply to this message Reply
Summary
jQuery is a client-side JavaScript library that encourages the separation of presentation content from JavaScript code, and makes it possible to implement advanced client-side functionality with little code. Bear Bibeault's recent article introduces this library.
Advertisement

Separation of presentation from application logic has been a main goal of server-side enterprise frameworks for years. As many server-side template libraries illustrate, however, even presentation logic can require complex code, and separating layout code away from code that adds interactivity to a user interface can be a major challenge.

As interactive Web UIs move increasing amounts of functionality to the client, the separation of HTML and CSS layout code from JavaScript code mirrors similar challenges on the server. In a recent article, Bear Bibeault introduces jQuery, a JavaScript library that has such separation of concerns as one of its key design foundations, Getting Started with jQuery. (jQuery has no relation to server-side Java or to database access.)

jQuery is a general-purpose Ajax library with a distinct design flavor centered around requiring less code from its users:

A self-professed "new type" of JavaScript library, [jQuery] operates from a slightly different viewpoint than other toolkits like Dojo and Prototype. It purports to change the way that you write JavaScript, and quite truly, adopting the jQuery philosophy can make a huge impact on how you develop the script for your pages.

One manifestation of jQuery's design philosophy is its reliance on providing adaptors (wrappers) for DOM elements, as opposed to extending such components with new functionality:

Rather than extending classes, jQuery provides a new class, appropriately named jQuery, that serves as a wrapper around other objects in order to provide extended operations upon those objects. The concept of a wrapper object is not foreign to advanced developers of object-oriented programs. This pattern is often used as an adapter to present an interface for manipulating an object that is different from the original object's interface.

In jQuery, most operations are performed by using the jQuery wrapper around a set of items and calling wrapper methods that operate upon the wrapped items.

Another aspect of jQuery's design is to facilitate the separation of presentation logic code from layout and styling code:

One of the goals of jQuery is to make it easy for page authors to separate script from document markup, much in the same manner that CSS allows us to separate presentation from the document markup. Granted, we could do it ourselves without jQuery's help—after all, jQuery is written in JavaScript and doesn't do anything we couldn't do—but jQuery does a lot of the work for us, and is designed with the goal of easily separating script from document markup. So, rather than adding an onchange event handler directly in the markup of the select element, we'll use jQuery's help to add it under script control.

The rest of Bibeault's article presents a tutorial on loading external HTML fragments into a page, and retrieving data from a server.

What techniques do you use to separate JavaScript code references from HTML and CSS mark-up?

Topic: Programming Alone Previous Topic   Next Topic Topic: Are the REST/WS* Wars Really Over?

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use