The domexception tag has no wiki summary.
2
votes
1answer
1k views
SYNTAX_ERR: DOM Exception 12 - Hmmm
I have been working on a small slideshow / public display for a client that uses HTML5 Rock's Slideshow code. I have run into a DOM Exception 12 - a syntax error that is supposedly related to CSS ...
0
votes
0answers
18 views
DOMException - Syntax Error - Google Chrome Debugger
I am using (17.0.963.46 m) of chrome.
I receive a DOMException (syntax error) somewhere deep in the jQuery library ( I actually receive tons of them and cannot really debug) when I launch the ...
0
votes
1answer
32 views
PHP: DOMNode::appendChild to an array of Elements
I am using DOMDocument to parse an XML file. I loop through the different Elements and see if any of them is missing and I fill an array with a createElement, with the error message. At the end I'm ...
0
votes
2answers
106 views
How to continue execution after a throw exception in Java?
I am reading HTML files from a folder using xml parser that store the clean code in tagNode
try {
Document doc = new DomSerializer(props, true).createDOM(tagNode);
} catch (Exception ex) {
...
0
votes
0answers
54 views
Getting an invalid character DOMException error. I've implemented htmlentities to change special characters but no luck
The character set of the CSV file I'm exporting to XML is ASCII so it should be working.
I think the function may not be implemented correctly? No errors are thrown but the original error remains ...
0
votes
1answer
40 views
List of all possible Uncaught Error: DOM Exceptions?
After getting an "Uncaught Error: NOT_FOUND_ERR: DOM Exception 8", and having seen a few others of the DOM Exceptions recently, I'm wondering... Does anyone have a list of all possible DOM ...
0
votes
0answers
74 views
iOS local file in phonegap error setting cookies
When I try to call the following javascript from a local loaded file on ios
function setCookie(name, value)
{
document.cookie = name + "=" + value;
}
I receive the error:
"SECURITY_ERR: DOM ...
0
votes
1answer
86 views
android XPath, copy nodes from one document to another
Hi I need to copy nodes from one XML into another one:
String _sPathOfrObj = "/response/grp/ofr/obj";
String _sPathHotelData = "/main/hotelData";
String _sPathStatus = "/main/status";
xpath.reset();
...
-1
votes
2answers
138 views
Calling postMessage in Web Worker onmessage callback throws SYNTAX_ERR: DOM Exception 12
When writing the onmessage callback for a Web Worker I get an "Uncaught Error: SYNTAX_ERR: DOM Exception 12" in my console when I try to send another postMessage().
var w = new Worker(url);
...