diff --git a/index.html b/index.html index 05d7796..0244571 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - Chosen - a javascript plug-in for jQuery and Prototype - makes select boxes better + Chosen - a JavaScript plugin for jQuery and Prototype - makes select boxes better @@ -38,7 +38,7 @@
-

Chosen is a javsacript plug-in that makes long, unwieldy select boxes much more user-friendly. It is currently available in both jQuery and Prototype flavors.

+

Chosen is a JavaScript plugin that makes long, unwieldy select boxes much more user-friendly. It is currently available in both jQuery and Prototype flavors.

Project page on GitHub

Standard Select

@@ -1190,7 +1190,7 @@

Default Text Support

-

Chosen automatically sets the default field text ("Choose a country...") by reading the select element's title value. If no title value is present, it will default to "Select Some Option" or "Select Some Options" depending on whether the select is single or multiple. You can change these elements in the plug-in js file as you see fit.

+

Chosen automatically sets the default field text ("Choose a country...") by reading the select element's title value. If no title value is present, it will default to "Select Some Option" or "Select Some Options" depending on whether the select is single or multiple. You can change these elements in the plugin js file as you see fit.

<select title="Choose a country..." style="width:350px;" multiple class="chzn-select">
@@ -1222,21 +1222,21 @@
  • Progressive Enhancement

    -

    Because chosen replaces normal html select fields, you don't need to do anything special to make it work for browsers without javascript. You don't need to do anything special on the back end to handle the data either -- the form field still gets submitted as normal.

    +

    Because chosen replaces normal html select fields, you don't need to do anything special to make it work for browsers without JavaScript. You don't need to do anything special on the back end to handle the data either -- the form field still gets submitted as normal.

  • Painless Setup

    -

    Add Chosen's files to your app and trigger the plug-in (see Setup below). Chosen automatically respects optgroups, selected state, the multiple attribute and browser tab order. You don't need to do anything else except customize the style as you see fit.

    +

    Add Chosen's files to your app and trigger the plugin (see Setup below). Chosen automatically respects optgroups, selected state, the multiple attribute and browser tab order. You don't need to do anything else except customize the style as you see fit.

  • Setup

    Using Chosen is easy as can be.

      -
    1. Download the plug-in and copy the related files to your app.
    2. -
    3. Activate the plug-in: +
    4. Download the plugin and copy the related files to your app.
    5. +
    6. Activate the plugin:
        -
      • jQuery Version: Call the chosen plug-in - $(".chzn-select").chosen()
      • +
      • jQuery Version: Call the chosen plugin - $(".chzn-select").chosen()
      • Prototype Version: Add the class chzn-select to appropriate select boxes.
      @@ -1257,7 +1257,7 @@
      • Something doesn't work. Can you fix it?

        -

        Yes! Please report all issues using the GitHub issue tracking tool. Please include the plug-in version (jQuery or Prototype), browser and OS. The more information provided, the easier it is to fix a problem.

        +

        Yes! Please report all issues using the GitHub issue tracking tool. Please include the plugin version (jQuery or Prototype), browser and OS. The more information provided, the easier it is to fix a problem.

      • What browsers are supported?