Hi, I have a Wordpress site and I've been able to defer most render blocking scripts and css although I cannot get ride of https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js no matter what I try. Is there a way to defer / load asynchronously this https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js script or should I just leave it? Thanks
Leave it. But if you wan't you can add script (<script src=""></script>) to the end of body tag or load asynchronously (<script async src=""></script>).