QuirksBlog monthlies

This is the monthly archive for May 2008.

Kings of Code slides up

Permalink | in Conferences
5 comments (closed)

Just now I posted the (Dutch) slides of my JavaScript Events presentation at Kings of Code.

Download them here. PDF file; about 620K.

I want to repeat this presentation in English at some conference somewhere, but I don't yet have specific plans. So if you can't read Dutch you'll have to have some patience.

The Ajax Experience and other conferences

Permalink | in Conferences
1 comments (closed)

Next month will be a busy, conference- and travel-rich month. September will be exactly the same, but fortunately I've got some spare time in between (time that I'm going to need for my next big project).

Before revealing my exact schedule, I've got a new speaking gig to announce: The Ajax Experience, September 29th to October 1st, Boston. I will present the "State of the Browsers" session, in which I'm going to discuss the failings of modern browsers when it comes to DOM support, as well as quizzing a few framework authors about their handling of browser incompatibilities. It's going to be huge fun and I'm looking forward to it.

continue reading

getElementsByClassName

Permalink | in Content
12 comments (closed)

This is worth a formal note: getElementsByClassName() is now natively supported by the most recent versions of Firefox, Safari, and Opera. I added it to the compatibility tables. Obviously, as long as Certain Other Browsers do not support it we can't yet really use it everywhere, but it's a ray of hope.

And you wrote your custom getElementsByClassName() function to keep an eye on native implementations, didn't you?

function getElementsByClassName(node,classname) {
	if (node.getElementsByClassName)
		return node.getElementsByClassName(classname);
	else {
		// your custom function
	}
}

Older

See the April 2008 archive.

This is the blog of Peter-Paul Koch, web developer, consultant, and trainer. You can also follow him on Twitter or Mastodon.
Atom RSS

If you like this blog, why not donate a little bit of money to help me pay my bills?

Categories: