Archive for July 3rd, 2005

DOMParser for IE and Safari

Sunday, July 3rd, 2005

A few days ago Dave over at the WebGraphics blog posted about how to parse a string into a DOM tree for Safari.
I commented “How about implementing the DOMParser object in js?” and before I knew it I did it myself and adding IE compatibility on the way:
if (typeof DOMParser == “undefined”) {
[...]

XSLT in JS

Sunday, July 3rd, 2005

I know this one is not too new but is still very interesting.
Steffen Meschkat has created an XPath, XSLT and DOM engine written in pure javascript. Steffen works for Google and I believe this excellent piece of code was written in his 20 percent time to allow Opera and Safari to work with Google Maps.
My [...]