getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Superfast 'js' active class #240

Closed getdave closed 10 years ago

getdave commented 10 years ago

Add the following to the header.php file

<script>
// Super fast method of adding "js" class
// http://www.456bereastreet.com/archive/201209/tell_css_that_javascript_is_available_asap/
document.documentElement.className = document.documentElement.className.replace(/(\s|^)no-js(\s|$)/, '$1js$2');
</script>
getdave commented 10 years ago

Added this