Tagged Questions
The textnode tag has no wiki summary.
13
votes
4answers
1k views
getElementsByTagName() equivalent for textNodes
Is there any way to get the collection of all textNode objects within a document?
getElementsByTagName() works great for Elements, but textNodes are not Elements.
Update: I realize this can be ...
6
votes
2answers
811 views
Is there a 4096 character limit for JavaScript XML text nodes?
How is it that I always get only the first 4096 chars of a valid XML text node? (using JavaScript...) is a text node limited?
6
votes
4answers
1k views
Retrieving DOM textnode position
Is it possible to retrieve the geometric position (i.e. top/left offsets from either the parent element, the page, etc) of a text node?
4
votes
2answers
171 views
jQuery get .text() but not the text in span
Hi guys this is my jQuery part that makes my menu for my pages.
function fetchmenus() {
$.getJSON('sys/classes/fetch.php?proccess=1', function(status) {
// get line status
...
4
votes
2answers
569 views
jQuery Select and wrap textNode
I want to select the test inside the div element and wrap it with <b> tag. <b> tag should only wrap to text inside div and not text inside a child element such as the tag in this example. ...
4
votes
3answers
327 views
Dom Nodes manipulations, how remove tags which wrap my selection?
I try to explain you my "problem". I would like to know when I select a part of text, if this text is “wrapped” by html tags, and in function delete them.
For example with this sentence :
The car is ...
3
votes
2answers
1k views
JavaScript: How to get text from all descendents of an element, disregarding scripts?
My current project involves gathering text content from an element and all of its descendents, based on a provided selector.
For example, when supplied the selector #content and run against this ...
3
votes
1answer
564 views
When a mousedown and mouseup event don't equal a click
I've been using some buttons for a while now that have a depressed effect as they are clicked using position relative and a top: 1px in the :active pseudo-class.
I had problems with click events not ...
3
votes
9answers
3k views
finding elements with text using jQuery
I want to create an array of all the html elements within a div that contain text strings, such as
<p>some string</p>.
I don't want to get hold of the strings, I want the array items to ...
2
votes
1answer
56 views
How do I select an XML node with the longest child #text node value with XPath?
I've used XPath to select the node with the largest integer id value before using this query:
//somenode[not(@id <= preceding::somenode/@id) and not(@id <= following::somenode/@id)]
I was ...
2
votes
4answers
120 views
Removing comments and text nodes from jQuery collection
$html = $("<!-- comment --> <p>text</p>");
creates a jQuery collection like so
$( [the comment], [text node], p )
How can I access the paragraph only? .find("p") returns an ...
2
votes
4answers
98 views
TEXT_NODE: returns ONLY text?
I'm using JavaScript in order to extract all text from a DOM object. My algorithm goes over the DOM object itself and it's descendants, if the node is a TEXT_NODE type than accumulates it's ...
2
votes
4answers
166 views
How can i style textnodes that are direct children of a body-element?
I have a body elemnt containing textnodes as a direct children, but patragraphs too.
Now, i would like to create my css so that this textnodes get specific css settings.
On the other hand i do not ...
2
votes
3answers
400 views
Selecting a specific text node with phpQuery
OK, this is driving me nuts. I'm trying to screen-scrape the following bit of seemingly trivial HTML with phpQuery:
<td><nobr>10-05-2009</nobr><br>06:10<br>17:35 ...
2
votes
3answers
826 views
javascript innerHTML without childNodes?
im having a firefox issue where i dont see the wood for the trees
using ajax i get html source from a php script
this html code contains a tag and within the tbody some more tr/td's
now i want to ...
2
votes
1answer
308 views
finding text in a table with jQuery
I have a table that has rows like this:
<tr id="" class="objectRow">
<td class="bulkSelector"><input id="" type="checkbox" value=""/></td>
<td ...
1
vote
1answer
34 views
remove B elements add them at the end of the doment load
I have an issue with a jquery script using text node to find and wrap text in a div.
It's ignoring <b> elements at the very start. But not after any plain text.
<b>Bold ...
1
vote
1answer
106 views
adding text with whitespaces in svg text element
Im trying to add some text that contains several whitespaces to a svg text element. I'm totally desprate, because when there is more than one whitespaces after an other they are added correctly to the ...
1
vote
1answer
72 views
jQuery: How to wrap from tag to tag (including text nodes!) in a div.
I have an html page whose formatting I CANNOT change and looks like this:
<A HREF="Lorem ipsum.htm"><B>Lorem ipsum dolor sit amet</B></A><BR>consectetuer
adipiscing ...
1
vote
2answers
135 views
Parse Text Values From XML File in Java
So right now I am using the SAX parser in Java to parse the "document.xml" file located within a .docx file's archive. Below is a sample of what I am trying to parse...
Sample XML Document
...
1
vote
4answers
48 views
JS get value of generated textnode
I have this Javascript in a for loop:
renderAElements[i] = document.createElement ("a");
renderAElements[i].setAttribute("href", "#");
renderAElements[i].setAttribute("class", ...
1
vote
3answers
176 views
removing all text nodes from a particular div tag using javascript
i have some dynamically generated html from a php script. the php code looks like this
echo "<div id='categories'>\n";
foreach($category as $k => $v)
{
echo "<div class='category'>\n";
...
1
vote
1answer
72 views
Applying CSS across multiple TextNodes
I'm looking for a way to apply a CSS class to an arbitrary text range in an HTML document. I'm using MooTools and the the rangy library, and something like this works if there's only a single TextNode ...
1
vote
1answer
58 views
How to mark HTML DOM TextNode
I am populating all TextNodes in a page, posting their nodeValues to a remote site with an ajax query. When the associated callback is invoked, I want to somehow mark the TextNode fed to the callback ...
1
vote
2answers
800 views
java dom getTextContent() issue
when i'm trying to access my xml data from doGet method of my servlet, it only outputs the value up to the white spaces, including the whole value.
XML File:
<RealEstate>
<Property>
...
1
vote
1answer
213 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
264 views
JavaScript: Add elements in textNode
I want to add an element to a textNode. For example: I have a function that search for a string within element's textNode. When I find it, I want to replace with a HTML element. Is there some standard ...
1
vote
0answers
332 views
JQUERY text nodes - Find the last sentence in an Element, and wrap it in a span tag [closed]
Possible Duplicate:
Given an ID, find and replace the last sentence with a span wrapper
Give a DIV with a block of text with sentences, meaning a period.
How does one use the JQUERY text ...
1
vote
1answer
307 views
JS DOM: Get elements by text content
I am looking for a way to perform fulltext search on the DOM tree with JS. In two words, I would like to retrieve the list of text nodes which contain a given string.
I've tried mootools' ...
1
vote
1answer
175 views
Phone number transformation. Separate prefix in brackets
There is an element: <phone>(987) 123-45-67</phone>.
It is necessary to transform it in: <span><small>(987)</small> 123-45-67</span>.
How it can be made?
...
1
vote
5answers
295 views
jQuery : Attaching mouseup event to all textnodes of a container
I want to attach a "mouseup" event on all nodes of a container, including text nodes using jQuery. How do I do that?
Update:
If I had some HTML fragment like this:
<p>Some text node ...
1
vote
2answers
692 views
jQuery : find and wrap textnode with some element
my HTML code :
<body>Firebrand will tend to burn any bricks out there. so the best idea is to ignore any active firebrand if you are a bricks. Otherwise, you can challenge a firebrand if you ...
1
vote
2answers
637 views
Javascript: getBoundingClientRect() for text nodes?
Is there a way to get the bounding rect of a text node?
The getBoundingClientRect() method is defined on elements only, and the parent element is bigger then the actual text node.
10x!
0
votes
1answer
36 views
Add css style into textnode dynamically
I'm having a problem of adding a css style into the auto generated textnode. I know that the textnode does not has any parent node. So I cannot just append the css style in it.
Basically, what I ...
0
votes
1answer
37 views
removing the > from a list by identifying the proper textnode with javascript/jquery
I asked a somewhat similar question this afternoon and then realized as great as the answer is my question was not correct...
given the following:
<p class="p">
<div> </div>
...
0
votes
1answer
68 views
IE7 creates empty text notes between floated elements
I'm working on a pagination sort of thing, which is simply just a bunch of floated anchor-tags inside a div. Now, in IE7, it inserts empty text nodes here and there, seemingly at random, which breaks ...
0
votes
1answer
36 views
How to create a node and pass it to a function?
I have the following:
<div contenteditable="true">
<p>Here is some text blah <span class="tag">meme</span> hello world.</p>
</div>
What I want to do is set ...
0
votes
1answer
48 views
TEXT_NODE in IE < 9 jQuery problems
I have this simple function to find "unwrapped" text and wrap it into a div.
It is working fine apart from IE < 9. What can I change here to make it working please.
$('#categories_list') ...
0
votes
2answers
77 views
“nodeValue” property of text node is blank - how do I test for it then?
So let's say I have a very basic page with a body, a single div, and a paragraph element inside with some text.
<body>
<div>
<p>some text</p>
<div>
...
0
votes
3answers
107 views
How can I use php to remove tags with empty text node?
How can I use php to remove tags with empty text node?
For instance,
<div class="box"></div> remove
<a href="#"></a> remove
<p><a href="#"></a></p> ...
0
votes
2answers
244 views
Inserting br into a textnode
This might seem odd. I have a div with the id of 'quotes', and inside there is a blockquote. I thought it would be interesting to add line breaks, if the quoted text were poetry, and I thought you ...
0
votes
2answers
239 views
counting text node recursively using javascript
Let say I have a mark up like this
<html id="test">
<body>
Some text node.
<div class="cool"><span class="try">This is another text node.</span></div>
Yet another ...
0
votes
3answers
124 views
how to read string only and ignore other element in JQuery
I have the following 'td'element, and want to read out the string part (cell 1) ONLY without the 'span' part, how can i do that in jQuery?
<td class="myTable">cell 1<span ...
0
votes
5answers
318 views
Calculate width of text node in a block level element using jQuery
Say I have:
<div>Some variable amount of text.</div>
How can I get the width (in pixels) of the text in the div?
Keep in mind that the amount of text will vary unpredictably from div ...
0
votes
0answers
254 views
Strip javascript/html from a jquery text node?
This is a small part of my huge jquery-based language translation project.
This is one minor/last remaining problem, is that while my code loops through all text nodes on a web-page, on my dev ...
0
votes
1answer
149 views
How to get the html of a text node in jquery?
I use this as 1 of the many parts in my language translation jquery script.
This part grab's the text of a node, as I loop through all the nodes on a web page.
However it grab's a lot of the hidden ...
0
votes
0answers
120 views
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.
Info's at:
http://help.dottoro.com/ljxsqnoi.php
Example at:
http://jsfiddle.net/t3sWz/
Code FireFox3.5+ ...
0
votes
3answers
237 views
forcing firefox skip “text nodes” in DOM parsing by javascript
Hi
I'm writing a javascript code to traverse HTML dom and highlight elements.
My problem is firefox returns whitespaces as text node.
Is there any solution to force it to just return tags? for example ...
0
votes
5answers
1k views
How to remove an individual text node in a div without removing all of them?
How do I go about removing an individual dynamically created text node?
I am generating input's on the fly and am using .createTextNode to place descriptive text before the elements. I need the ...