Home > Articles > Programming > Java

Exploring jQuery Selectors, Part 2

Developer Jeff Friesen continues his three-part series that introduces jQuery's selectors. Part 2 continues to explore selectors by focusing on jQuery's form and attribute selector categories.
Like this article? We recommend

The popular jQuery JavaScript library simplifies the client-side scripting of web applications. At the heart of this library are the selectors, used to match elements in a document's DOM tree.

Part 1 of this series introduced you to jQuery's selectors feature and explored its basic and hierarchy selector categories. Part 2 continues to explore selectors by focusing on jQuery's form and attribute selector categories.

Form Selectors

Form selectors let you match elements within the context of forms. Each form selector begins with a colon (:), which indicates that the selector is a pseudo-class selector.

The following table lists the supported form selectors.

Form Selector

Description

Button (":button")

Select all <button> elements and elements of type button. Example: $(":button"). An equivalent selector to $(":button") using valid CSS is $("button, input[type='button']").

Checkbox (":checkbox")

Select all elements of type checkbox. For example, $("input:checkbox") selects all <input> elements that are of type checkbox. The equivalent of ":checkbox" is "[type=checkbox]".

Checked (":checked")

Select all elements that are checked. The ":checked" selector works for checkboxes and radio buttons. For <select> elements, use the ":selected" selector. For example, $("input:checked") selects all <input> elements that are checked.

Disabled (":disabled")

Select all elements that are disabled. For example, $("input:disabled") selects all <input> elements that are disabled.

Enabled (":enabled")

Select all elements that are enabled. For example, $("input:enabled") selects all <input> elements that are enabled.

File (":file")

Select all elements that are of type file. For example, $("input:file") selects all <input> elements that are of type file. The equivalent of "file" is "[type="file"]".

Focus (":focus")

Select the currently focused element. For example, $("input:focus") selects the currently focused <input> element.

Image (":image")

Select all elements of type image. For example, $("input:image") selects all <input> elements that are of type image. The equivalent of ":image" is "[type="image"]".

Input (":input")

Select all <input>, <textarea>, <select>, and <button> elements. For example, $(":input") selects all of these elements.

Password (":password")

Select all elements of type password. For example, $("input:password") selects all <input> elements that are of type password. The equivalent of ":password" is "[type=password]".

Radio (":radio")

Select all elements of type radio. For example, $("input:radio") selects all <input> elements that are of type radio. The equivalent of ":radio" is "[type=radio]".

Reset (":reset")

Select all elements of type reset. For example, $("input:reset") selects all <input> elements that are of type reset. The equivalent of ":reset" is "[type="reset"]".

Selected (":selected")

Select all elements that are selected. The ":selected" selector works for <option> elements. It doesn't work for checkboxes or radio inputs; use ":checked" for those. For example, $("select option:selected") selects all selected <option> elements.

Submit (":submit")

Select all elements of type submit. For example, $("input:submit") selects all <input> elements that are of type submit. The equivalent of ":submit" is "[type="submit"]". The ":submit" selector typically applies to <button> or <input> elements. Some browsers implicitly treat the <button> element as type="default" and others (such as Internet Explorer) don't.

Text (":text")

Select all elements of type text. For example, $("input:text") selects all <input> elements that are of type text. The equivalent of ":text" is "[type="text"]". As of jQuery 1.5.2, ":text" selects <input> elements that have no specified type attribute (in which case type="text" is implied).

The following sections demonstrate the :button, :selected, and :text selectors.

The :button Selector

Listing 1 presents an HTML document that demonstrates the :button selector.

Listing 1: Experimenting with the :button selector.

<html>
  <head>
    <title>Form Selector Demo: ":button"</title>
    <script type="text/javascript"
            src="https://code.jquery.com/jquery-1.7.2.min.js">
    </script>
    <style>
      .highlighted { background-color: cyan; border: 1px green ridge; }
    </style>
  </head>
  <body>
    <form>
      File name: <input type="text" name="filename" value="">
      <input type="button" value="Choose file..."/>
      <p>
      <input type="submit" value="Submit">
      <button type="reset">Reset</button>
    </form>
    <script type="text/javascript">
      $(function()
      {
         $("form").submit(function()
                          {
                             $(":button").addClass("highlighted");
                             return false; // Don't submit form.
                          });
      });
    </script>
  </body>
</html>

Listing 1 specifies a form for entering a filename or (hypothetically) choosing the filename by clicking a button. The form includes two buttons: a button via an <input> element of type button and a button via a <button> element.

The $("form").submit(function() { /* ... */ }); expression binds an event handler to the "submit" JavaScript event for each form that is specified in the document. However, only a single form has been specified.

When you click the Submit button, jQuery invokes the anonymous function passed as an argument to submit(). This function executes $(":button").addClass("highlighted"); to add the CSS highlighted class to each form button.

Figure 1 shows the resulting page before Submit is clicked.

Figure 1 The Choose File and Reset buttons are not highlighted.

Figure 2 shows the resulting page after Submit is clicked.

Figure 2 The Choose File and Reset buttons are highlighted.

The :selected Selector

Listing 2 presents an HTML document that demonstrates the :selected selector.

Listing 2: Experimenting with the :selected selector.

<html>
  <head>
    <title>Form Selector Demo: ":selected"</title>
    <script type="text/javascript"
            src="https://code.jquery.com/jquery-1.7.2.min.js">
    </script>
  </head>
  <body>
    <form>
      Select your favorite ice cream flavors:
      <p>
      <select multiple="multiple">
         <option value="blueberry">blueberry</option>
         <option value="cherry">cherry</option>
         <option value="chocolate">chocolate</option>
         <option value="mango">mango</option>
         <option value="strawberry">strawberry</option>
         <option value="vanilla">vanilla</option>
      </select>
      <p>
      <input type="submit" value="Submit">
    </form>
    <script type="text/javascript">
      $(function()
      {
         $("form").submit(function()
                          {
                             var choices = "";
                             var len = $('select option:selected').length;
                             if (len == 0)
                             {
                                alert("You must like something!");
                                return false;
                             }
                             $("select option:selected").each(function(index)
                                                              {
                                                                 choices += $(this).text();
                                                                 if (index < len-2)
                                                                    choices += ", ";
                                                                 if (index == len-2)
                                                                    choices += " and ";
                                                                 if (index == len-1)
                                                                    choices += ".";
                                                              });
                             alert("You like "+choices);
                             return false;
                          });
      });
    </script>
  </body>
</html>

Listing 2 specifies a form for selecting zero or more favorite ice cream flavors. When you click the Submit button, the anonymous function passed to the submit() method learns which flavors were selected and outputs this list.

The select option:selected contextual selector returns a jQuery object containing all selected <option> elements contained in all <select> elements, of which there is only one.

Method each() iterates over the jQuery object, invoking the anonymous function passed to this method for each selected <option> element. The zero-based index of that element is passed as an argument to the function.

The function builds a choices string by accessing the current selected <option> element's text via $(this).text(), and choosing appropriate punctuation for the string's text with help from the index argument.

Figure 3 shows the resulting page after selecting three flavors and clicking Submit.

Figure 3 An alert window displays the favorite flavors list.

The :text Selector

Listing 3 presents an HTML document that demonstrates the :text selector.

Listing 3: Experimenting with the :text selector.

<html>
  <head>
    <title>Form Selector Demo: ":text"</title>
    <script type="text/javascript"
            src="https://code.jquery.com/jquery-1.7.2.min.js">
    </script>
  </head>
  <body>
    <form>
      First name: <input type="text" name="firstname" value=""><br>
      Last name: <input type="text" name="lastname" value="">
      <input type="submit" value="Submit">
      <input type="reset" value="Reset">
    </form>
    <script type="text/javascript">
      var isEmpty;
      $(function()
      {
         $("form").submit(function()
                          {
                             isEmpty = false;
                             var f = function(index, value)
                                     {
                                        var input = $(this);
                                        if (value == "")
                                        {
                                           input.css("background-color", "red");
                                           isEmpty = true;
                                        }
                                        else
                                           input.css("background-color", "white");
                                        return value;
                                     };
                             $("input:text").val(f);
                             return !isEmpty;
                          });
      });
    </script>
  </body>
</html>

Listing 3 specifies a form for entering a first name and a last name, and then submitting these values. Because these values must be present before the form is submitted, this listing uses jQuery to perform validation before submission.

The anonymous function passed to submit() performs validation by resetting an isEmpty variable to false (indicating no empty text fields), by executing $("input:text").val(f);, and by returning the inverse of isEmpty.

Expression $("input:text").val(f); returns all <input> elements of type text, invoking jQuery's val(callback) method on each returned element. This method invokes the callback function to validate the element.

The callback function has the form function(index, value), where index is the element's position in the returned array of elements, and value is the element's current value. This function's return value replaces the current value.

The function first executes var input = $(this); to obtain a reference to the current element, and then compares value to the empty string. If nothing was entered, the current element's background color is set to red (to notify the user); otherwise, it's set to white.

When the background color is set to red, isEmpty is assigned true to signify that an empty element has been found. When this value is true, the anonymous function passed to submit() must return false so that the form isn't submitted. This is why that function returns !isEmpty.

Figure 4 shows the resulting page after leaving the Last Name text field empty and clicking Submit.

Figure 4 The Last Name text field's red background color tells the user to supply a value.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020