Update prototype example page (No ids!)
This commit is contained in:
parent
2e7348d412
commit
f89783e6f9
12
example.html
12
example.html
|
@ -306,7 +306,7 @@
|
|||
</div>
|
||||
<div>
|
||||
<em>Into This</em>
|
||||
<select title="Choose a Country..." class="chzn-select" style="width:350px;" tabindex="2" id="single_example">
|
||||
<select title="Choose a Country..." class="chzn-select" style="width:350px;" tabindex="2">
|
||||
<option value=""></option>
|
||||
<option value="United States">United States</option>
|
||||
<option value="United Kingdom">United Kingdom</option>
|
||||
|
@ -807,7 +807,7 @@
|
|||
</div>
|
||||
<div>
|
||||
<em>Into This</em>
|
||||
<select title="Choose a Country..." class="chzn-select" multiple style="width:350px;" tabindex="4" id="multi_example">
|
||||
<select title="Choose a Country..." class="chzn-select" multiple style="width:350px;" tabindex="4">
|
||||
<option value=""></option>
|
||||
<option value="United States">United States</option>
|
||||
<option value="United Kingdom">United Kingdom</option>
|
||||
|
@ -1060,7 +1060,7 @@
|
|||
<div class="side-by-side clearfix">
|
||||
<div>
|
||||
<em>Single Select with Groups</em>
|
||||
<select id="nfl_team_single" title="Your Favorite Football Team" style="width:350px;" class="chzn-select" tabindex="5">
|
||||
<select title="Your Favorite Football Team" style="width:350px;" class="chzn-select" tabindex="5">
|
||||
<option value=""></option>
|
||||
<optgroup label="NFC East">
|
||||
<option>Dallas Cowboys</option>
|
||||
|
@ -1114,7 +1114,7 @@
|
|||
</div>
|
||||
<div>
|
||||
<em>Multiple Select with Groups</em>
|
||||
<select id="nfl_team_multi" title="Your Favorite Football Team" style="width:350px;" class="chzn-select" multiple tabindex="6">
|
||||
<select title="Your Favorite Football Team" style="width:350px;" class="chzn-select" multiple tabindex="6">
|
||||
<option value=""></option>
|
||||
<optgroup label="NFC East">
|
||||
<option>Dallas Cowboys</option>
|
||||
|
@ -1173,7 +1173,7 @@
|
|||
<p>Chosen automatically highlights selected options and removes disabled options.</p>
|
||||
<div>
|
||||
<em>Single Select</em>
|
||||
<select id="bears_single" title="Your Favorite Type of Bear" style="width:350px;" class="chzn-select" tabindex="7">
|
||||
<select title="Your Favorite Type of Bear" style="width:350px;" class="chzn-select" tabindex="7">
|
||||
<option value=""></option>
|
||||
<option>American Black Bear</option>
|
||||
<option>Asiatic Black Bear</option>
|
||||
|
@ -1187,7 +1187,7 @@
|
|||
</div>
|
||||
<div>
|
||||
<em>Multiple Select with Groups</em>
|
||||
<select id="bears_multiple" title="Your Favorite Types of Bear" style="width:350px;" multiple class="chzn-select" tabindex="8">
|
||||
<select title="Your Favorite Types of Bear" style="width:350px;" multiple class="chzn-select" tabindex="8">
|
||||
<option value=""></option>
|
||||
<option>American Black Bear</option>
|
||||
<option>Asiatic Black Bear</option>
|
||||
|
|
Loading…
Reference in a new issue