Opened 12 years ago
Closed 12 years ago
#9418 closed bug (invalid)
Elements with hyphens cannot be created in an XML document
Reported by: | Hancoque | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | unfiled | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Creating new elements in an XML document with hyphens in their names doesn't work using $(...). The regex string saved in the rsingleTag variable uses only \w to evaluate whether createElement() is to be used or not and the alternative method apparently doesn't work with XML documents.
A solution would be to replace \w with [\w\-] in the regex string.
Note: See
TracTickets for help on using
tickets.
Don't try to parse XML with
$(...)
because it isn't meant or documented to do that. Try$.parseXML()
instead.