Commit c100d59a authored by David HAN SZE CHUEN's avatar David HAN SZE CHUEN

Document support of `title` attribute on OPTION tags

parent 7f80e5aa
......@@ -119,6 +119,8 @@ $(document).ready(function() {
$('#example2').multiselect();
$('#example54').multiselect();
$('#example3').multiselect({
buttonClass: 'btn btn-link'
});
......@@ -317,6 +319,21 @@ $(document).ready(function() {
Select with preselected options: <code>&lt;option value=&quot;cheese&quot; selected&gt;Cheese&lt;/option&gt;</code>
</td>
</tr>
<tr>
<td>
<select id="example54" multiple="multiple">
<option value="cheese" title="Smelly">Cheese</option>
<option value="tomatoes" title="Handsome">Tomatoes</option>
<option value="mozarella" title="Italian">Mozzarella</option>
<option value="mushrooms" title="Tender">Mushrooms</option>
<option value="pepperoni" title="Spicy">Pepperoni</option>
<option value="onions" title="Tasty">Onions</option>
</select>
</td>
<td>
Select with options titles (hover with mouse): <code>&lt;option value=&quot;cheese&quot; title=&quot;Smelly&quot;&gt;Cheese&lt;/option&gt;</code>
</td>
</tr>
<tr>
<td>
<select id="example27" multiple="multiple">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment