This would work in IE, Firefox and Chrome (can somebody test the others please? — Thanks, @Bryan):
for (var i = 0; i < elem.attributes.length; i++) {
var attrib = elem.attributes[i];
alert(attrib.name + " = " + attrib.value);
}
EDIT: IE iterates all object attributes, regardless whether they actually have been defined.
You must look at the "attrib.specified" boolean property to find out if the attribute actually exists. Firefox and Chrome seem to support this property as well:
for (var i = 0; i < elem.attributes.length; i++) {
var attrib = elem.attributes[i];
if (attrib.specified) {
alert(attrib.name + " = " + attrib.value);
}
}