“Obtener texto seleccionado JS” Código de respuesta

Obtener texto de la opción seleccionada JS

var sel = document.getElementById("box1");
var text= sel.options[sel.selectedIndex].text;
Encouraging Elephant

Obtener texto seleccionado JS

// Get highlighted text this way:

window.getSelection().toString()
Tame Toad

Obtener entrada de texto seleccionada JavaScript

function disp() {
  var text = document.getElementById("text");
  var t = text.value.substr(text.selectionStart, text.selectionEnd - text.selectionStart);
  alert(t);
}
Zealous Zebra

Respuestas similares a “Obtener texto seleccionado JS”

Preguntas similares a “Obtener texto seleccionado JS”

Más respuestas relacionadas con “Obtener texto seleccionado JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código