How do you do jQuery's hasClass with plain ol' javascript? E.g., <body class="thatClass" /> What's the javascript way to ask if body has "thatClass"?
Also, anyone know of a site that explains that gives javascript versions of many jQuery functions? I often find myself looking for answers to similar questions.
classproperty (which in case of multiple classes will have multiple class names in random order separated by a space) and check whether your class name is in it. Not terribly difficult, but still terribly inconvenient if not for learning purposes :) – Pekka 웃 Feb 23 '11 at 0:06