Re: XSLT Transform in Netscape 6.1/6.2
"Seamus" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.layout.xslt |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
Thank for the info. In other news, I can't seem to be able to load the XSL
doc with the usual:
xslDoc = getDomDoc();
xslDoc.async = false;
xslDoc.addEventListener("load",
function(evt) {_Document_onload_XSLT(xslDoc);}, false);
xslDoc.load(xslSourceURI);
where _Document_onload_XSLT is simply :
objDOMDocument.readyState = 4;
//if there is an onreadystatechange event handler, run it
if (objDOMDocument.onreadystatechange != null &&
typeof objDOMDocument.onreadystatechange == "function") {
objDOMDocument.onreadystatechange();
}
Any special Netscape way of loading docs from URIs?
"Seamus" <[email protected]> wrote in message
news:[email protected]...
>I know, I know...you might think it odd but I need to be able to perform
>XSLT transforms in Netscape 6.1 or 6.2. I tried 6.0 but when it didn't
>even recognize XSLTProcessor I moved on. I currently have a X-browser impl
>for this process written for Mozilla Firefox 1.0 and IE. Netscape 6.2,
>however, seems to have have a different API for using
>processors/stylesheets. The resource I have used to this point has been:
>
> http://www.webreference.com/programming/javascript/domwrapper/index.html
>
> which states it supports Netscape 6.1+..hmmm not so much.
>
>
> Any ideas would be greatly appreciated.
>
>
> Seamus
>