Jump to content

Textarea Styles


The Little Guy

Recommended Posts

Scrap my opening post, I decided to go with a div.

 

now I have a question, I am able to select text in the div, is it possible to get the first position of the selected text, and either the length, or the end position of the selected text?

 

example:

string = abcde

selected text = bc

start = 1

end = 2

length = 2

Link to comment
https://forums.phpfreaks.com/topic/121929-textarea-styles/#findComment-629280
Share on other sites

I couldn't figure out how you would find the start and the end, but I managed to get it to find the length. Here is some code, pretty self explanatory.

 

<script language="javascript">
function selectedText(id){

var sel = "";

try {
	sel = window.getSelection();
}
catch(e){
	try {
		sel = document.getSelection();
	}
	catch(e){
		try {
			sel = document.selection.createRange().text;
		}
		catch(e){
			alert("Could not get selection.\n"+e);
		}
	}
}
var selection = String(sel);
var length = selection.length;

alert(selection+"\n"+length);
}
</script>

<div id="select" name="select">This is some text.</div>
<br /><br />
<input type="submit" name="submit" value="Tell Me The Selected Text" onclick="javascript: selectedText('select')" />

Link to comment
https://forums.phpfreaks.com/topic/121929-textarea-styles/#findComment-629408
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.