- jQuery: Get option innerHTML of first option with value set in HTML select tag
- var result = $('#selectId option[value!=""]').first().html();
- var result = $('#selectId option[value!=""]:first').html();
- var result = $('#selectId option[value!=""][value]:first').html();
- $('select[name=thename] option:eq(1)').text();