Google PageSpeed test is telling me to use async
E.g. change
<script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
To
<script async src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
Will modernizer still work just fine?
Modernizr needs to be placed in the <head>
for two reasons:
You can use an async attribute and/or place it at the bottom if neither of these matter to you.
Look at this issue posted in Modernizr