How do you select text in Android and detect Android browser with Javascript?
One example:
<script>
function select(){
var sel = window.getSelection();
alert(sel);
}
</script>
<div onmouseup="select();">
it is a example
<div>
Are functions on range compatible with Android?