views:

17

answers:

1

I have a caret in the textarea (no selection). I need to make selection out of it by pressing a button.
For example: "This is a te|xt"

var range = document.selection.createRange ();
range.moveEnd('character');
range.select();
alert (range.htmlText);

But when I press button, the text on the button is being selected, not in the text field.
Is there a workaround for this?

A: 

FOCUS to textfield is answer

Qiao