Reputation: 13192
I I check my performance web on the pagespeed tab, the result like this :
If I check on the yslow tab, the result like this :
Why is minify js / css page speed and yslow different?
The message like this :
There are 9 components that can be minified
inline <style> tag #2
inline <style> tag #4
inline <script> tag #2
inline <script> tag #4
inline <script> tag #6
inline <script> tag #7
inline <script> tag #8
inline <script> tag #9
inline <script> tag #10
And how do I find out which css and js need to be minified?
Note : I using gtmetrix to check it
Upvotes: 0
Views: 577
Reputation: 4638
PageSpeed
shows that you have minify your js
and css
Yslow
showing that you have inline
style
and script
on multiple page which can be add in to the external file and then minify for pagespeed
improvement.
Upvotes: 1