I have implement Cache tool on my cPanel server and configured it but i am getting Defer Parsing JavaScript warning in gtmetrix and google pagespeed
Asked
Active
Viewed 1,386 times
1 Answers
0
1) Put any js script reference to footer. 2) a) Add Async attribute to the script.
<script async src="script.js"></script>
b) You can also test it with Defer attribute.
<script defer src="script.js"></script>
3) Optionally if possible try to combine the js files, this will give better result in PageSpeed in most cases.

James Mascarenhas
- 567
- 5
- 14