Just been on google page speed insights and this was the only issue on rener blocking:
Eliminate render-blocking JavaScript and CSS in above-the-fold content
Your page has 1 blocking script resources. This causes a delay in rendering your page.
None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
Remove render-blocking JavaScript:
https://divingincyprus.net/mobile/jquery-1.7.2.min.js
I just need some simple terms of where to find it and how to stop it. My site is not responsive but has a skip through to a mobile version when a phone is detected.
Also i have lots of these that need sorting:
Leverage browser caching
Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.
Leverage browser caching for the following cacheable resources:
https://divingincyprus.net/mobile/images/Blog-Small.png (expiration not specified) here is one example i have about 20
Any help would be great.
Jonny
jquery issue
Re: jquery issue
You can move JavaScripts to the end of the page with 'Move JavaScript to the end of the page' in Tools->Options->HTML
Be careful however, because this may affect the behavior of third party scripts or extensions.
Be careful however, because this may affect the behavior of third party scripts or extensions.
This is unrelated the software. This is a server configuration issue.Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.
- BaconFries
-
- Posts: 5621
- Joined: Thu Aug 16, 2007 7:32 pm
Re: jquery issue
As mentioned this is server related. If you are familiar with using any of the following .htaccess or mod headers then you can write specific settings in both for the likes of expiry dates or maximum age. You can also try a simple meta tag such as the following what this is saying is to expire the contents in 30 days timeSetting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.
Code: Select all
<meta http-equiv="Expires" content="30">