diff --git a/demos/slider/colorpicker.html b/demos/slider/colorpicker.html index 60e673ede..7bd4edf1e 100644 --- a/demos/slider/colorpicker.html +++ b/demos/slider/colorpicker.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Colorpicker Demo + jQuery UI Slider - Colorpicker @@ -83,9 +83,7 @@ Simple Colorpicker
-

-This example shows how easy it is to put together three sliders to make a simple RGB colorpicker. -

+

Combine three sliders to create a simple RGB colorpicker.

diff --git a/demos/slider/default.html b/demos/slider/default.html index 196af067a..4adc27053 100644 --- a/demos/slider/default.html +++ b/demos/slider/default.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Default Demo + jQuery UI Slider - Default functionality @@ -26,9 +26,7 @@
-

-The default slider has a single handle and is horizontal. The handle can be moved with the mouse or by using the arrow keys. -

+

The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.

diff --git a/demos/slider/index.html b/demos/slider/index.html index cd89f6bcc..2319efad6 100644 --- a/demos/slider/index.html +++ b/demos/slider/index.html @@ -9,14 +9,14 @@

Examples

diff --git a/demos/slider/multiple_vertical.html b/demos/slider/multiple_vertical.html index ba6d9b2c2..1a279b026 100644 --- a/demos/slider/multiple_vertical.html +++ b/demos/slider/multiple_vertical.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Multiple Vertical Sliders Demo + jQuery UI Slider - Multiple sliders @@ -82,9 +82,7 @@ Graphic EQ
-

-This example shows how easy it is to add multiple sliders to a page, each with their own options, to make a UI for a music player. -

+

Combine horizontal and vertical sliders, each with their own options, to create the UI for a music player.

diff --git a/demos/slider/range.html b/demos/slider/range.html index 356fad63c..8bc8a5cd9 100644 --- a/demos/slider/range.html +++ b/demos/slider/range.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Range Demo + jQuery UI Slider - Range slider @@ -40,13 +40,7 @@
-

-Example of a range slider that had two drag handles and a filled bar that connects the two handles to indicate that the values between them are selected. -This is created by setting the range option: -

- -
range: true
-
+

Set the range option to true to capture a range of values with two drag handles. The space between the handles is filled with a different background color to indicate those values are selected.

diff --git a/demos/slider/range_vertical.html b/demos/slider/range_vertical.html index fe1bef044..7d80bd3a1 100644 --- a/demos/slider/range_vertical.html +++ b/demos/slider/range_vertical.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Vertical Range Demo + jQuery UI Slider - Vertical range slider @@ -39,23 +39,7 @@
-

-This is an example of a vertical range slider created by setting the orientation to vertical: -

- -
orientation: "vertical",
-range: true,
-values: [17, 67]
-
- -

-It's important to note that a vertical slider needs a height set. -You can do this via .height() or by setting the height through CSS. -

- -

-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback. -

+

Change the orientation of the range slider to vertical. Assign a height value via .height() or by setting the height through CSS, and set the orientation option to "vertical."

diff --git a/demos/slider/rangemax.html b/demos/slider/rangemax.html index 148474e8f..7d51f8d34 100644 --- a/demos/slider/rangemax.html +++ b/demos/slider/rangemax.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Range Max Demo + jQuery UI Slider - Range with fixed maximum @@ -39,18 +39,7 @@
-

-An example of a range slider that has the filled bar hard-coded to the maximum value plus a single slider. -This makes it clear that selecting a value will also include all values above the selection. -This is a range option type: -

- -
range: "max"
-
- -

-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback. -

+

Fix the maximum value of the range slider so that the user can only select a minimum. Set the range option to "max."

diff --git a/demos/slider/rangemin.html b/demos/slider/rangemin.html index 7642deb8b..ad0addc11 100644 --- a/demos/slider/rangemin.html +++ b/demos/slider/rangemin.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Range Min Demo + jQuery UI Slider - Range with fixed minimum @@ -40,18 +40,7 @@
-

-An example of a range slider that has the filled bar hard-coded to the minimum value plus a single slider. -This makes it clear that selecting a value will also include all values below the selection. -This is a range option type: -

- -
range: "min"
-
- -

-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback. -

+

Fix the minimum value of the range slider so that the user can only select a maximum. Set the range option to "min."

diff --git a/demos/slider/side_scroll.html b/demos/slider/side_scroll.html index fbe1fa651..0c33228a0 100644 --- a/demos/slider/side_scroll.html +++ b/demos/slider/side_scroll.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Default Demo + jQuery UI Slider - Slider scrollbar @@ -126,9 +126,7 @@
-

-Example of how a slider can be used to manipulate the positioning of content on the page. In this case, it acts as a scrollbar. -

+

Use a slider to manipulate the positioning of content on the page. In this case, it acts as a scrollbar with the potential to capture values if needed.

diff --git a/demos/slider/slider_vertical.html b/demos/slider/slider_vertical.html index 5a663edda..f0be30e0e 100644 --- a/demos/slider/slider_vertical.html +++ b/demos/slider/slider_vertical.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Vertical Single Slider Demo + jQuery UI Slider - Vertical slider @@ -41,21 +41,7 @@
-

-This is an example of a minimum range vertical slider created by setting the orientation to vertical: -

- -
orientation: "vertical"
-
- -

-It's important to note that a vertical slider needs a height set. -You can do this via .height() or by setting the height through CSS. -

- -

-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback. -

+

Change the orientation of the slider to vertical. Assign a height value via .height() or by setting the height through CSS, and set the orientation option to "vertical."

diff --git a/demos/slider/steps.html b/demos/slider/steps.html index cbbf5f469..25064f526 100644 --- a/demos/slider/steps.html +++ b/demos/slider/steps.html @@ -1,7 +1,7 @@ - jQuery UI Slider - Steps Demo + jQuery UI Slider - Snap to increments @@ -40,21 +40,7 @@
-

-This slider has a step value set that will only allow for increments of 50 to be selected. -The default step increment is 1. -The drag handle will snap to drop points every 50 units. -This is set in an option called step: -

- -
min: 0,
-max: 500,
-step: 50
-
- -

-This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback. -

+

Increment slider values with the step option set to an integer, commonly a dividend of the slider's maximum value. The default increment is 1.