jQuery -How to add jQuery library?

I am a few lessons in on jQuery. There does not appear to have any instruction on adding jQuery library when I am coding out of freeCodeCamp. How do I add jQuery library say when I am coding in Bluefish?

Download it and link to the script file in the HTML, or use a CDN link.

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>

It can also be installed as a dependency (using npm/pnpm/yarn) if needed.

Thank you. I will try it.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.