要素の型を返すことは可能ですか? class 属性のない HTML5 オブジェクトにクラスのスタイルを追加したいと考えています。
<!DOCTYPE>
<html>
<head>
<title>My page</title>
</head>
<body>
<header>
Hello World
</header>
<section>
Another object
</section>
</body>
<!-- jQuery if need be -->
<script>
$("body>*").each(function(){
alert($(this).object());
// Would alert "header" and "section"
});
</section>
</html>