12
votes
2answers
172 views
Selecting text behind another element with createEvent
I have a scenario where I have some text, which should be user-selectable. The problem is, that there's an UI overlay on top of it, which prevents selecting text by default. The logical way to keep ...
11
votes
2answers
863 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 ...
11
votes
4answers
1k views
Use Javascript to get selected text in Mobile Safari
So I'm working on a bookmarklet where it would be ideal for me to grab the content selected by the user using the "loop". Both window.getSelection and document.getSelection are functions that I can ...
9
votes
2answers
64 views
jQuery checkbox: select all/none except one
I have a checkbox select all issue. I have multiple checkbox that can be triggered by a master one.
If the master one is check then you can select any checkbox (which this works). Now my problem is ...
9
votes
3answers
378 views
Prevent selection being greyed out in iframe in Firefox without using contenteditable
In Firefox 3 and later (and probably older versions), selecting content within an iframe always seems to use the grey selection background colour used for a document that doesn't currently have focus, ...
8
votes
2answers
154 views
Non-continuous selections in chrome?
Update
I recently discovered you can programatically create selections with Chrome which aren't continuous, by either replacing elements / textnodes inbetween in the parts you want unselected or ...
8
votes
3answers
3k views
JavaScript selection/range framework
I've been working with selection/range objects, and because to the incredible amount of inconsistencies between browsers for specific selection/range stuff (even more than the DOM) I was wondering if ...
7
votes
4answers
4k views
Prevent selection in HTML
I have a div on a HTML page and whenever I press the mouse and move it, it will show that "can't drop" cursor like it selects something. Is there a way to disable selection? I tried CSS user-select ...
7
votes
4answers
6k views
Textarea Selection
The Problem
I am working on an in-browser editor within a textarea. I have started looking for some information on dealing with textarea selection and found this jQuery plugin that does some simple ...
6
votes
3answers
947 views
Replacing text inside textarea without focus
I want to replace selected text(or insert new text after cursor position if nothing is selected).
The new text is entered from another textbox.
I want to be able to insert new text without clicking ...
6
votes
4answers
1k views
Set textarea selection in Internet Explorer
I'm looking for a way to set a selection in a textarea in Internet Explorer. In other browsers, this works just fine:
textarea.selectionStart = start;
textarea.selectionEnd = end;
In IE, I assume I ...
6
votes
3answers
2k views
Firefox Extension: Get selected text
I am working on a simple Firefox Extension and I want to get the selected text. I tried this:
var WordCount = {
/* ... */
changeSelected: function() {
var selectedText = ...
5
votes
3answers
343 views
Saving a selection for later use in JS
I've got a rich text editor in an iframe with designMode that does syntax highlighting for small blocks of text. I'd like it to update the highlighting on keyup, but messing with the DOM causes the ...
5
votes
1answer
165 views
Losing selection when clicking checkbox label
I am trying to get a checkbox with a label to function so that when you have text selected in a contenteditable div, clicking on the label will not lose the selection from the div. The label still ...
5
votes
2answers
216 views
Get the raw HTML of selected content using javascript
How would I get the raw HTML of the selected content on a page using Javascript? For the sake of simplicity, I'm sticking with browsers supporting window.getSelection.
Here is an example; the ...
5
votes
1answer
2k views
Disabling text selection via doubleclick with javascript
When double-clicking on a html page most browsers select some text - e.g. the word you doubleclick on. Is there a way to get rid of this behaviour?
Note that I do not want to disable regular ...
5
votes
1answer
3k views
Selection ranges in webkit (Safari/Chrome)
I'm using a content-editable iframe to create a syntax-highlighter in javascript and one of the most important things is to be able to indent code properly.
The following code works just as it should ...
5
votes
2answers
3k views
How can I get the DOM element which contains the current selection?
You can select a part of a web page with the mouse.
I know that I can get the currently selected text but how can I get the DOM element which contains the start or end of the current selection?
4
votes
1answer
77 views
Is there a way to get ruby text to convert to HTML text, for indexing purposes? or how do I get the index of text in HTML accurately?
In the above image, I've selected the phrase 'macro up myself' which starts at index 140, and ends at index 155.
(Indexes are calculated via .outerHTML of the parent element (the div holding all the ...
4
votes
1answer
217 views
Specific UIWebView Selections (only entire words/sentences)
I want users to only be able to select an entire sentences within my UIWebView. I'm using my own UIMenuItem (a bookmark button) in a UIWebView. I am going to save this bookmark (core data) and would ...
4
votes
1answer
213 views
Javascript Text Selection Page Coordinates
I have an question about getting the page coordinates of a text selection in javascript. I do know how to get the selected text etc. but that is not what I'm looking for... I need the coordinates (in ...
4
votes
2answers
920 views
Get selected text position
Currently a I'm getting the selected text in the browser doing this:
window.getSelection();
Now I need to show a tooltip above that text when pressing a custom key(note that the mouse could not be ...
4
votes
2answers
113 views
Strange behavior of selection
My JS code:
function getSelectedText(){
if(window.getSelection){
select = window.getSelection().getRangeAt(0);
var st_span = ...
3
votes
4answers
122 views
jQuery select multiple :nth-child()
This is my table , use tr, and td.
NAME Address CITY STATE
ABC 123 A CA
AB8 123 B CA
AFC 456 B TX
POI 985 C KJ
After document ready, it will hide all ...
3
votes
1answer
188 views
Display content based on Select Menu dropdown change
I'm currently using the following to display an input field when I change a dropdown menu selection:
<select id="delivery_country" name="d_country" onchange="
if (this.selectedIndex==14){
...
3
votes
1answer
91 views
Is it possible to set Range object as “backwards selection”?
I create a Range object and then add this Range to selection
window.getSelection ().addRange(myRange);
How to set the selection direction?
I mean direction which can be checked using the ...
3
votes
2answers
119 views
How to get the text of a selection over multiple HTML elements?
Here is my question:
When the user makes a selection in an article or in the editing area of a WYSWYG editor widget,
the selection can span over multiple elements,
like anchors, images, span tags... ...
3
votes
2answers
162 views
CSS to only allow selection of text on a webpage?
Is there a lightweight CSS or Javascript snippet that will allow me only make the selection/highlighting of things on a page only available to text? It's always annoyed me when you're trying to ...
3
votes
1answer
129 views
Google Chrome moves cursor to end of the previous node when setting it to the start of a node with JavaScript
I have the following content in a TinyMCE instance:
<p><span id="span1">Test</span><span id="span2">Bla</span></p>
When the user sets the cursor before the “B” ...
3
votes
3answers
1k views
jQuery - select all text from a textarea
How can I make it so when you click inside a textarea, its entire content gets selected?
And eventually when you click again, to deselect it.
3
votes
1answer
583 views
Converting Range or DocumentFragment to string
Is there a way to get the html string of a JavaScript Range Object in W3C compliant browsers?
For example, let us say the user selects the following: Hello <b>World</b>
It is possible to ...
3
votes
2answers
399 views
How to use jQuery prevAll() to select nearby text nodes?
I'm getting a text node (node.nodeType == 3) returned from the getSelection range, eg.:
var selectionRange = selection.getRangeAt(0);
var startContainer = selectionRange.startContainer;
This ...
3
votes
3answers
1k views
Cross Browser Selection Range Library?
Does any one know of any cross browser user selection range libraries written in javascript?
I have a found a few jquery plugins, (which quite frankly are too limiting and very buggy).
I have already ...
3
votes
1answer
441 views
Change text selection highlight with JS
For standard browsers you can use something like this to change the coloring of selected text.
div.txtArea::selection {
background: transparent;
}
div.txtArea::-moz-selection {
background: ...
3
votes
3answers
3k views
Get selected text and selected nodes on a page?
When selecting a block of text (possibly spanning across many DOM nodes), is it possible to extract the selected text and nodes using Javascript?
Imagine this HTML code:
<h1>Hello ...
3
votes
4answers
4k views
Character offset in an Internet Explorer TextRange
As far as I can tell there's no simple way of retrieving a character offset from a TextRange object in Internet Explorer. The W3C Range object has a node, and the offset into the text within that ...
2
votes
1answer
89 views
Set selection range in javascript IE8
I'm working on a wysiwyg editor using div[contenteditable=true]
and I want to set a selection range from offset X of Node A to offset Y of Node B. I did it well on Firefox and IE9, the code is :
var ...
2
votes
0answers
53 views
Javascript Manual Selection doesn't replace
I have some text in a textbox. I automatically select some of it by calling textbox.setSelectionRange(a, b). But then, when I start typing again, the letters are appended on the right of the selection ...
2
votes
1answer
198 views
Set caret to end after focus CKEditor [closed]
Possible Duplicate:
CKEditor - Set cursor position to end of text
I have a <div> with a lot of content. After a click on this div, the CKEditor is loaded to edit this div.
Now I ...
2
votes
1answer
98 views
Create Safari's Find Function Style Text Selector in Javascript
Is there any way to make this text selection effect easily with a library in Javascript? It is very well done and I'd like to mirror this look.
Wondering if anyone had done something similar or seen ...
2
votes
1answer
56 views
Can a selection object be created without any user interaction?
Can a Selection object be created without any user interaction? window.getSelection() does return a Selection object, but you can't modify() it unless the user has some sort of selection made.
Is ...
2
votes
3answers
569 views
JavaScript Set Window selection
In JavaScript, there is a method window.getSelection(), that lets me get the current selection that the user has made.
Is there a corresponding function, something like window.setSelection(), that ...
2
votes
3answers
146 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
476 views
JavaScript Drag & Select functionality done right
I'm trying to write a drag & select functionality using HTML & JavaScript. By that I mean that there will be a set of objects with arbitrary absolute positions. I want to be able drag the ...
2
votes
1answer
330 views
Internet explorer div contentEditable prevent DOM element selection onclick
I'm trying to update the innerHTML of a <div contentEditable=true> programmaticaly (javascript).
Using Internet Explorer < 8 or in Quirks mode if the HTML contains <span> tags one ...
2
votes
4answers
246 views
Selecting Text through JavaScript
I want to select text thats is on a Html page and make it BOLD, I am using the following Code
<script type="text/javascript" >
function getSelectedText(){
if(window.getSelection){ ;
...
2
votes
4answers
640 views
Get the selected text of a web page in google chrome extension
I am developing a Google Chrome extension. When a popup is clicked, I would like the input box present in the popup.html file to contain the selected text of the current webpage.
Example textbox:
...
2
votes
2answers
1k views
Firefox select text range
A quick question: how do I programatically select the text fragment of the page in FireFox? For example, there's a paragraph of text, user clicks the button and symbols from 10-th to 15-th are ...
2
votes
1answer
632 views
getSelection on DIV contentEditable
I am trying to achieve project and I must do a WYSIWYG editor in JavaScript. I can't use an existing editor because I need use my plugins (for example a colorPicker or imagePicker).
For now I have ...
2
votes
1answer
87 views
Global event if a jQuery selection returns no elements?
Is there any way to globally monitor or listen to if a selection is made in jQuery and it returns no elements? E.g.:
You have a page with:
<div id=”some-id”></div>
And in a JavaScript ...