Can links to jQuery scripts be easily updated by changing to the link for the updated script?
I'm using a purchased template. When I performed a Chrome / Lighthouse audit I received a message stating that my site uses an outdated script with security vulnerabilities. Should I just link to the new version of the script? The script is:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
I would update it to:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> (Lighthouse recommends the 3.3.1 version)
Thanks!