We're trying to set an XML attribute within some JavaScript code. The following only seems to work on some browsers, and even then we're not sure what makes it work/not work
objXMLElem.setAttribute("XXX"
= strTemp
From the documentation,
objXMLElem.setAttribute("XXX", strTemp)
appears to be the only defined method of doing this.
Any idea on the differences between these two? Is the first some sort of unsupported extension?
thanks
objXMLElem.setAttribute("XXX"
From the documentation,
objXMLElem.setAttribute("XXX", strTemp)
appears to be the only defined method of doing this.
Any idea on the differences between these two? Is the first some sort of unsupported extension?
thanks