searchable option list jquery code example
Example 1: jquery find input and select
// Selects all input, textarea, select and button elements.
const allInputs = $(":input");
Example 2: How do you select a particular option in a SELECT element in jQuery?
$('.selDiv option:eq(1)')