I'm trying to figure out a way to automatically select an option, based on a passed variable, that matches only the value of that option.
<label>
    <span>Font Type</span>
    <select id="options>
        <option value="one">One</option>
        <option value="two" selected>Two</option>
        <option value="three">Three</option>
    </select>
</label>
function loadSelect(userFont){
    $('#options').find('option[value='+userFont+']').attr('selected', 'selected');
}
loadSelect(three);
 
    