Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
728 views

How do I choose between innerText or nodeValue?

When I need to change a text within a span element, which one should I use and what is the difference: var spnDetailDisplay=document.getElementById('spnDetailDisplay'); ...
1
vote
3answers
42 views

Javascript nodevalue

What is wrong with this code? var myRutabaga = $("rutabaga"); if(myRutabaga.checked){ document.$("likerutabagas") = "LIKE"; }else{ document.$("likerutabagas") = "DO NOT LIKE"; } It will not ...
1
vote
2answers
42 views

How to get the html inside a $node rather than just the $nodeValue

Description of the current situation: I have a folder full of pages (pages-folder), each page inside that folder has (among other things) a div with id="short-info". I have a code that pulls all the ...
1
vote
2answers
132 views

ChildNodes/NodeValue Confusion

I'm new with Ajax. I'm trying to parse this document. I've gotten as far as the readystatechange, and it's fetching the XML. But I get confused when it comes to the childNodes and their values. ...
1
vote
4answers
363 views

Size limit to javascript [node].nodeValue field?

I'm receiving XML data via an AJAX call. One of the tags has a large amount of text, roughly 4000-5000 characters. In Firefox, the field is being truncated around the 3000th character. Most everything ...
1
vote
1answer
252 views

PHP DOM: Get Nodevalue without descendant nodes

i am using the php dom function nodeValue to extract the text of content. But it returns the descendant values too: <example> <inhalt>123<more>45</more></inhalt> ...
1
vote
3answers
578 views

Javascript nodeValue returns null

Title should make my problem well described.Here goes my code. <div id="adiv"><text>Some text</text></div> <script type="text/javascript"> function vb(){ ...
1
vote
3answers
128 views

I want to extract the contents of a node as a string using XPath and PHP

I have a function that accepts a general HTML file and a general XPath expression. I want to extract a string of the matched node containing the entire text including HTML tags. Here's a simplified ...
1
vote
6answers
358 views

Get content from XML PHP5

I´m working on a paymentsolution and need some help with the PHP. I´m doing a HTTPRequest and in response I will get some XML. The XML Could look like this: <?xml version="1.0" encoding="utf-8" ...
0
votes
2answers
65 views

Value of selected checkbox

I am trying to find the sum of checkbox values (23.75 and 142.75) Poaten Checkbox1: 2012-01-17, Porti, 1.760, 23.75 Checkbox2: 2012-01-17, Kopien, 10.560, 142.55 Checkbox3: 2012-01-17, Honorar, ...
0
votes
2answers
76 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
2answers
74 views

Php - Dom, Insert HTML_CODE inside nodeValue

$dom= new DOMDocument('1.0', 'iso-8859-1'); $dom->loadHTML(' <html><body> <strong>SECOND</strong> </body></html>'); $path = new DOMXPath($dom); ...
0
votes
1answer
50 views

Why does null keep coming back when getting nodeValue even though it displays properly?

This is driving me nuts. I'm inserting code into a page via Ajax. After the code is inserted I am running a function to grab the text of one of the DIVs and display it in another location on the page. ...
0
votes
3answers
325 views

php domdocument get node value where attribute value is

Say my XML looks like this: <record> <row name="title">this item</row> <row name="url">this url</row> </record> Now I'm doing something like this: $xml = ...
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
0answers
181 views

XML NodeValue cuts off after 300 characters (in Google Chrome)

In my javascript web app, I'm loading XML files in two ways. 1) via an ajax call, and 2) as the response from submitting a form to the server. The result of each load is an XMLDocument. I then try and ...
0
votes
4answers
111 views

Grab any Text Node within the BODY using Jquery

Hoping someone can help. I need to grab any text node inside the body. Even if it is NOT contained within any other element. I've tried: $("p, div, html, body").each(function(){ ...
0
votes
1answer
201 views

how to get the 'guid's nodeValue in my code using google ajax feed api

this is my code : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> ...
0
votes
1answer
373 views

ASP.NET Web Service returning XML result and nodevalue is always null

I have an ASP.NET web service which returns an XMLDocument. The web service is called from a Firefox extension using XMLHttpRequest. var serviceRequest = new XMLHttpRequest(); ...
0
votes
2answers
752 views

nodeValue from DomDocument returning weird characters in PHP

So I'm trying to parse HTML pages and looking for paragraphs (<p>) using get_elements_by_tag_name('p'); The problem is that when I use $element->nodeValue, it's returning weird characters. ...