This repository was archived by the owner on Nov 1, 2020. It is now read-only.

Description
First off, thanks for putting together this script.
Unlike inputs and textareas, if a select box has a predefined/initial selected="selected"
option, float-labels doesn't activate for that field.
For example, the following will show "United States" styled as a a grayed out placeholder without any floating label:
<label for="country">Country</label>
<select id="country">
<option>Country</option>
<option value="CA">Canada</option>
<option value="US" selected>United States</option>
</select>