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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.