Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
1k views

Highlight text range using JavaScript

I would like to highlight (apply css to) a certain text range, denoted by its start and end position. This is more diffucult than it seems, since there may be other tags within the text, that need to ...
6
votes
1answer
1k views

How to insert inline content from one FlowDocument into another?

I'm building an application that needs to allow a user to insert text from one RichTextBox at the current caret position in another one. I spent a lot of time screwing around with the FlowDocument's ...
4
votes
1answer
106 views

Why does this function fail if there is any formatting in the text? [in IE8]

I am using the method below to search for a string in a web page. It matches plain text; but, it fails in the following context: <span>I</span> am searching for <b>text</b> ...
4
votes
1answer
1k views

Get a range's start and end offset's relative to its parent container

Suppose I have this HTML element: <div id="parent"> Hello everyone! <a>This is my home page</a> <p>Bye!</p> </div> And the user selects "home" with his mouse. ...
3
votes
1answer
136 views

getting offsetLeft of a text range

Can anyone tell me why this code is returning undefined. I was hoping this would give the left coordinate of the user selected text. function alertRangeObject(){ var userSelection; ...
3
votes
3answers
989 views

Change cursor type when the mouse gets over some selected text using HTML/Javascript

I need to change cursor type when the mouse gets over a selected text. Here you can find an explanatory image : In this example the user has to drag some text to the textarea. Since the ...
2
votes
1answer
206 views

How do i use TextRange in Silverlight?

I am using the following code i found online, http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/750a654e-b002-4742-8f46-609e93f6ec81 where i can save RichTextBox content to SQL DB but i am ...
2
votes
3answers
152 views

How to know if there is a link element within the selection

In Javascript, I'd like determine whether an element, say an A element, exists inside a given range/textRange. The aim is to determine if the user's current selection contains a link. I am building ...
2
votes
3answers
618 views

How can I change the font color of a TextRange in PowerPoint from C#?

I created a PowerPoint presentation using C#: PowerPoint.Application powerpointApplication; PowerPoint.Presentation pptPresentation; PowerPoint.Slide Slide; // Create an instance of PowerPoint. ...
2
votes
3answers
1k views

Javascript: Move caret to last character

I have a textarea and when I click in it I want to move the caret to the last character so Something[caret] function moveCaret(){ // Move caret to the last character } <textarea ...
1
vote
1answer
253 views

TextRange Find string c#

Im looking for a function that will enable me to find a certain string in a textRange and gives me back its textPointers(beginning and end) whats the best approach or is there any textRange method ...
1
vote
1answer
111 views

Can jQuery work with partial elements? (ranges)

Is it possible for jQuery to work with partial elements (aka ranges)? Probably not, but does anyone know any plugins? - or would anyone like to collaborate with me on making such a plugin? ...
1
vote
1answer
471 views

Move cursor to placeholder element in a contentEditable DIV

I have a contentEditable DIV and, when the user presses a key, the underlying code is processed and replaced by updated code. Alas, this causes the cursor position to be lost. However, in order to ...
1
vote
1answer
225 views

Is there a way selecting MULTIPLE areas of text with JS in Chrome and/or IE?

Firefox 3 can select MULTIPLE areas of text with JS. Is there a way doing this in Chrome and IE? I really tried to find a way to select of multiple textareas in a web page in Chrome and IE9. ...
1
vote
1answer
432 views

In Webkit, how do I add another word to the range?

Suppose I've made my range so that it covers a word, using range.expand('word'). Typically to add the next word, I would write range.moveEnd('word', 1). But this seems not to work in Webkit. ...
1
vote
1answer
692 views

Javascript: remember selected range of a text

I am trying to find a way to remember/store a JScript textrange and then apply it back to a text and convert it into a selection. An example: in an iframe which is in "designmode" and contains the ...
1
vote
1answer
1k views

WPF RichTextBox - Formatting of typed text

I am applying formatting to selected tokens in a WPF RichTextBox. To do this I get a TextRange that encompasses the token that I would like to highlight. I will then change the color of the text like ...
0
votes
1answer
48 views

How to count number of occurances of a text in a Page

var textRange = document.body.createTextRange(); textRange.collapse(true); if( textRange.findText(tex)) { textRange.execCommand("BackColor", false, "yellow"); } The above code is perfect to ...
0
votes
1answer
93 views

Implementing a javascript function to search in a div, getting textrange for the search

How do I get the textrange to do a search for a div (or a form)? Are there scripts already available, or jquery functions that search the text of a div? I append a form to a div with this code: ...
0
votes
1answer
177 views

Highlight string search string

I'm using the code below to search the text in a textarea for a string entered in a textinput. I'm trying to highlight the string in the textarea after it's been searched for. I assume the way to do ...
0
votes
0answers
34 views

Get first element of selected text in Internet Explorer

I want to retrieve the first element that contains the text that a user selects in Internet Explorer. I'm pretty sure that I want to use something related to document.selection and probably the ...
0
votes
4answers
232 views

javascript - multiple CreateTextRange simultaniously

I have the below javascript function, which when passed a word such as "Department" will highlight in red the first instance of "Department" found on the screen. However, i would like this code to ...
0
votes
1answer
2k views

Inserting text into an editable IFRAME at the caret position (IE)

I'm struggling with an actually straighforward problem: In Internet Explorer I want to insert plain text at the current caret position. This works really fine for simple TEXTAREA elements but it ...
0
votes
2answers
417 views

Internet Explorer equivalent range.startOffset

How can I get functionality equivalent to that of range.startOffset in Internet Explorer 8 and below? I.e., I'd like a function I can call on a range that will tell me how many characters into its ...
0
votes
2answers
88 views

jQuery is not detecting an Iframe

I am using the following code for Highlighting the text in the Iframe but i cant get it to work function getSelectedText() { if (window.getSelection) {; return ...
0
votes
1answer
628 views

Changing Spark TextArea text color dynamically over a range of characters

Hoping to obtain the help of some Flex 3/4 gurus out there... I am attempting to dynamically change the color of a subset/portion of text in a Spark TextArea control. Using the MX-based TextArea, I ...
0
votes
1answer
296 views

flex sprite textarea textrange

in flex,I have a textarea control i like to select some text in textarea. when mouse releases then selected text will be hilighted to GREEN RECTANGLE as sprite. can anybody help ??
0
votes
3answers
2k views

createTextRange - strange behavior in IE8

I have the following problem. In text input filed which work as an auto-completer some of suggestions it returns are wither than it. The problem comes when you leave the field. In IE the text cursor ...
0
votes
3answers
765 views

How can I mirror text selection?

Say you have two inputs: <input id="input1" type="text"/> and <input id="input2" type="text"/> such that through some JavaScript magic, anything you type in input1 will also be put in ...