Obtener el texto seleccionado.
Código html:
Ver original <script type="text/javascript"> function getTextoSeleccionado() {
if (window.getSelection) {
return window.getSelection();
} else if (document.getSelection) {
return document.getSelection();
} else if (document.selection) {
return document.selection.createRange().text;
} else return "Opción no soportada por el navegador";
}
input:
<input type="textInput" name="txt"> textarea:
Link:
Select:
Párrafo:
Esto es un párrafo de donde también se puede seleccionar texto.
<td align="center" colspan="2"> <a href=javascript:void(alert(getTextoSeleccionado()))>Ver texto seleccionado
</a>
En diferentes navegadores la selección de texto se maneja de forma diferente.