Replies: 0
hello –
in this file:
/wp-content/plugins/fancybox-for-wordpress/fancybox.php
i see this line:
<script src=”//ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js”></script>
and this line is getting flagged for “above-the-fold” SEO issues. i tried including ‘defer’ and ‘async’ like so:
<script src=”//ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js” async></script>
<script src=”//ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js” defer></script>
but both caused a jQuery issue: Uncaught ReferenceError: jQuery not defined
any suggestions?