Como obtenho o valor de texto de uma opção selecionada?
$( "#myselect option:selected" ).text();
Viruscom1000
$( "#myselect option:selected" ).text();
const getSelectedText = () => window.getSelection().toString();
const getSelectedText = () => window.getSelection().toString();
getSelectedText();