facebook twitter hatena line email

Html/パフォーマンスチューニング/jsやcss読み込み

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

スクロールせずに見えるコンテンツのレンダリングをブロックしている JavaScript/CSS を排除する

asyncを追加してやる

-<script src="http://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
+<script src="http://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript" async></script>

参考

https://developers.google.com/speed/docs/insights/BlockingJS