Front End Development Libraries

Hi, all. Please somebody help, I am learning Front End Development Libraries at the moment. I tried to copy the code from the course and paste it to my VSCode Studio. But it shown different result with the output on freecodecamp website (" jQuery: Target Elements by id Using jQuery | freeCodeCamp.org

please somebody tell me what is missing? i have no idea what link that i have to paste to my VSCode Studio. Thanks in advance…

You need to add, jQuery, Animate.css, and Bootstrap and they need to be the correct versions.

For Animate.css, you need to change the class names as needed or use the compat version (migration). For Bootstrap it should be version 3.3.7

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<link
    rel="stylesheet"
    href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.compat.css"
  />

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

Thanks so much, Mate… cheers…

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