Skip to content

Commit

Permalink
More doc updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfiller committed Jul 21, 2011
1 parent 380c228 commit 88f350d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions example.html
Expand Up @@ -1199,7 +1199,7 @@ <h2>Default Text Support</h2>
<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>
Expand All @@ -1208,6 +1208,6 @@ <h2>Setup</h2>
</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>
10 changes: 5 additions & 5 deletions example.jquery.html
Expand Up @@ -1199,16 +1199,16 @@ <h2>Default Text Support</h2>
<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>

0 comments on commit 88f350d

Please sign in to comment.