diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-31 05:01:58 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-31 05:01:58 +0000 |
commit | 58a11a7dec11bdfc1f43f210ffd52da3816a530c (patch) | |
tree | 64d5e9c9067dcae8f1a682fe4c9af0932e48faab /demos/slider/slider_vertical.html | |
parent | fff23b36bf19b348d2e6c575d0e3d13ed04d63a3 (diff) | |
download | jquery-ui-58a11a7dec11bdfc1f43f210ffd52da3816a530c.tar.gz jquery-ui-58a11a7dec11bdfc1f43f210ffd52da3816a530c.zip |
demos: added <code> inside <pre>. some other minor updates
Diffstat (limited to 'demos/slider/slider_vertical.html')
-rw-r--r-- | demos/slider/slider_vertical.html | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/demos/slider/slider_vertical.html b/demos/slider/slider_vertical.html index 12763dbd5..178d29852 100644 --- a/demos/slider/slider_vertical.html +++ b/demos/slider/slider_vertical.html @@ -25,22 +25,34 @@ </head> <body> - <div class="demo"> -<p>Volume: <input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;"/></p> +<p> +<label for="amount">Volume:</label> +<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;"/> +</p> + <div id="slider-vertical" style="height:200px;"></div> </div><!-- End demo --> +<div class="demo-description"> +<p> +This is an example of a minimum range vertical slider created by setting the orientation to vertical: +</p> -<div class="demo-description"> +<pre><code>orientation: "vertical" +</code></pre> -<p>This is an example of a minimum range vertical slider created by setting the orientation to vertical:</p> <pre>orientation: "vertical",</pre> -<p>It's important to note that a vertical slider needs a height set. You can do this via the script options or by adding a height through CSS. </p> -<p>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.</p> +<p> +It's important to note that a vertical slider needs a height set. +You can do this via <code>.height()</code> or by setting the height through CSS. +</p> +<p> +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. +</p> </div><!-- End demo-description --> |