Can you add jquery to your tribute page

I’m trying to make it where if you click this button, multiple paragraphs appear, but jquery isn’t working. How do you add jquery to your tribute page?

Start with the curriculum https://learn.freecodecamp.org/front-end-libraries/jquery

I’m trying to make it where if you click this button, multiple paragraphs appear, but jquery isn’t working. How do you add jquery to your tribute page?

You need to link to jquery in the head:

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
1 Like