More doc updates.

abstract-chosen
Patrick Filler 2011-07-21 10:28:26 -04:00
parent 380c2281ec
commit 88f350d992
2 changed files with 8 additions and 8 deletions

View File

@ -1199,7 +1199,7 @@
<code>&lt;select <strong>title="Choose a country..."</strong> style="width:350px;" multiple class="chzn-select"&gt;</code>
</div>
<h2>Setup</h2>
<h2>Setup (for Prototype)</h2>
<p>Using Chosen is easy as can be.</p>
<ol>
<li>Download the plug-in and copy the chosen files to your app.</li>
@ -1208,6 +1208,6 @@
</ol>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js"></script>
<script src="chosen/chosen.proto.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js" type="text/javascript"></script>
<script src="chosen/chosen.proto.js" type="text/javascript"></script>
</body>

View File

@ -1199,16 +1199,16 @@
<code>&lt;select <strong>title="Choose a country..."</strong> style="width:350px;" multiple class="chzn-select"&gt;</code>
</div>
<h2>Setup</h2>
<h2>Setup (for jQuery)</h2>
<p>Using Chosen is easy as can be.</p>
<ol>
<li>Download the plug-in and copy the chosen files to your app.</li>
<li>Add the class <em>chzn-select</em> to any select box.</li>
<li>Activate the plug-in on the select boxes of your choice: <code>$(".chzn-select").chosen()</code></li>
<li><a href="http://youtu.be/pS-RsIzb78U?t=57s">Disco</a>.</li>
</ol>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="chosen/chosen.jquery.js"></script>
<script> $(".chzn-select").chosen(); </script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script src="chosen/chosen.jquery.js" type="text/javascript"></script>
<script type="text/javascript"> $(".chzn-select").chosen(); </script>
</body>