diff --git a/example.html b/example.html index 2dbb6fc..b4c5190 100644 --- a/example.html +++ b/example.html @@ -52,7 +52,7 @@

Chosen

-

Chosen is a javsacript plug-in for jQuery and Prototype that makes long, unwieldy select boxes much more user-friendly. For more information (including usage, explanation and faqs), check out the online documentation.

+

Chosen is a JavaScript plugin for jQuery and Prototype that makes long, unwieldy select boxes much more user-friendly. For more information (including usage, explanation and faqs), check out the online documentation.

Standard Select

@@ -1203,7 +1203,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">
@@ -1230,7 +1230,7 @@

Setup (for Prototype)

Using Chosen is easy as can be.

    -
  1. Download the plug-in and copy the chosen files to your app.
  2. +
  3. Download the plugin and copy the chosen files to your app.
  4. Add the class chzn-select to any select box.
  5. Disco.
diff --git a/example.jquery.html b/example.jquery.html index 2e01883..c727c96 100644 --- a/example.jquery.html +++ b/example.jquery.html @@ -52,7 +52,7 @@

Chosen

-

Chosen is a javsacript plug-in for Prototype and jQuery that makes long, unwieldy select boxes much more user-friendly. For more information (including usage, explanation and faqs), check out the online documentation.

+

Chosen is a JavaScript plugin for Prototype and jQuery that makes long, unwieldy select boxes much more user-friendly. For more information (including usage, explanation and faqs), check out the online documentation.

Standard Select

@@ -1203,7 +1203,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">
@@ -1230,8 +1230,8 @@

Setup (for jQuery)

Using Chosen is easy as can be.

    -
  1. Download the plug-in and copy the chosen files to your app.
  2. -
  3. Activate the plug-in on the select boxes of your choice: $(".chzn-select").chosen()
  4. +
  5. Download the plugin and copy the chosen files to your app.
  6. +
  7. Activate the plugin on the select boxes of your choice: $(".chzn-select").chosen()
  8. Disco.