Tagged Questions
The createtextnode tag has no wiki summary.
3
votes
4answers
4k views
How do I prevent Php's DOMDocument from encoding html entities?
I have a function that replaces anchors' href attribute in a string using Php's DOMDocument. Here's a snippet:
$doc = new DOMDocument('1.0', 'UTF-8');
$doc->loadHTML($text);
$anchors = ...
2
votes
0answers
117 views
Integers in TextNodes w/ Python minidom
I am working on an API using SOAP and WSDL. The WSDL expects integers to come through. I am fairly new to ALL of this, and constructing XML in Python. I have chosen to use minidom to create my SOAP ...
1
vote
3answers
2k views
JavaScript TextNode update
If I have a
var t = document.createTextNode(text)
parent.appendChild(t);
Is it possible to simply update the contents of t?
I would like to change the text inside the parent without using ...
0
votes
1answer
38 views
DOMDocument - createTextNode, encoding issue
I have a problem with createTextNode method e special characters like '>', '<':
Dim xmlDoc As DOMDocument
Dim codeXML as String
Dim n As IXMLDOMNode
codeXML = '<data>value</data>'
Set ...
0
votes
5answers
431 views
Why isn't there a document.createHTMLNode()?
I want to insert html at the current range (a W3C Range).
I guess i have to use the method insertNode. And it works great with text.
Example:
var node = document.createTextNode("some text");
...
0
votes
2answers
143 views
createTextNode without htmlentities
Consider the following snippet:
var t = "<span>Hello world</span>";
var range = window.getSelection().getRangeAt(0);
range.deleteContents();
range.insertNode(document.createTextNode(t));
...
0
votes
1answer
46 views
JavaScript Live Error Display?
I need an efficient way to display errors I've collected from a form onsubmit function. Here is my error collecting function:
function checkForm(form) {
var errors = "";
errors += checkName(form, ...