HTML5 hidden attribute on option tags
This morning I learned about the hidden attribute that can be added to <option> tags within a <select> tag. The hidden attribute causes the option to simply not be shown in the list. Hidden elements will are also not selectable and will not return any selected value. The hidden attribute works in most browsers, with ~97.5% of browsers supported. For...