Simple alternative for modernizr

Sometimes you just don’t require all the features that modernizr offers but still need versions prior IE 9 to render HTML5 tags correctly—came accros this very handy and concise alternative via Nico Hagenburger’s blog

<script>
  'article aside footer header nav section time'.replace(/w+/g,function(n){document.createElement(n)})
</script>