--- sidebar_label: Frame.select --- # Frame.select() method Selects a set of value on the first `` matching `selector`. ## Example ```ts frame.select('select#colors', 'blue'); // single selection frame.select('select#colors', 'red', 'green', 'blue'); // multiple selections ```