(doc, tag, ns)
| 100516 | |
| 100517 | // create a new DOM element |
| 100518 | function domCreate(doc, tag, ns) { |
| 100519 | if (!doc && typeof document !== 'undefined' && document.createElement) { |
| 100520 | doc = document; |
| 100521 | } |
| 100522 | |
| 100523 | return doc ? ns ? doc.createElementNS(ns, tag) : doc.createElement(tag) : null; |
| 100524 | } // find first child element with matching tag |
| 100525 | |
| 100526 | |
| 100527 | function domFind(el, tag) { |