facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
2015年5月21日 (木) 08:07時点におけるAdmin (トーク | 投稿記録)による版

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

スクロールせずに見えるコンテンツのレンダリングをブロックしている 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