In a javascript function , the evt.target returns the following html :-
<select id="reportChannelsSelect" class="form-control" multiple="true" data-placeholder="Choose a Channel..." style="display: none;">
<option value="maintenance" id="channel-5c5812708065f536068819">maintenance</option>
<option value="operations" id="channel-5c5812a220fcd273648996">operations</option>
<option value="Private Testing Channel" id="channel-5631e7c4a317d864607733">Private Testing Channel</option>
<option value="TipsTest" id="channel-5cee1aea6ddf1527975644">TipsTest</option>
</select>
Also I have a filter text value - operations. Using this text,how can I fetch the value of id , which is "channel-5c5812a220fcd273648996" in this case.