When testing a website with Google Page Speed, I was found that I cannot get rid of Defer parsing of JavaScript. I removed all javascript codes and left only a small one as
<script defer type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.test').click(function(){
$(this).slideDown();
});
});
</script>
Or even without any jquery code, just loading the jQuery file standalone as
<script defer type="text/javascript" src="jquery.min.js"></script>
still get the warning for Defer parsing of JavaScript.
.jsfile somewhere, and add thedeferattribute to the<script>tag.defer? Or I didn't understand the question at all?