jQuery in 6 minutes | How to Use a JavaScript Library | Code in 5




Learn how to make your websites interactive with a JavaScript library called jQuery in 6 minutes! We’ll select some elements and dynamically change the webpage’s CSS based on what the user does.

Need some new tech gadgets or a new charger? Buy from my Amazon Storefront https://www.amazon.com/shop/blondiebytes

Code from Last Time | https://github.com/blondiebits/code-in-5/tree/master/JavaScript%20in%207

Download Sublime | http://www.sublimetext.com/2

Blog Post | http://blondiebits.herokuapp.com/#/5

Code | https://github.com/blondiebits/code-in-5

Check out my Java and Python courses on LinkedIn Learning!
https://www.linkedin.com/learning/instructors/kathryn-hodge

Support me on Patreon!
https://www.patreon.com/blondiebytes

Check out my Python Basics course on Highbrow!

Python basics

Check out behind-the-scenes on my Instagram!
https://instagram.com/blondiebytes/

Free HACKATHON MODE playlist:

MY FAVORITE THINGS:
Stitch Fix Invite Code: https://www.stitchfix.com/referral/10013108?sod=w&som=c
FabFitFun Invite Code: http://xo.fff.me/h9-GH
Uber Invite Code: kathrynh1277ue
Postmates Invite Code: 7373F
SoulCycle Invite Code: https://www.soul-cycle.com/r/WY3DlxF0/
Rent The Runway: https://rtr.app.link/e/rfHlXRUZuO

GitHub | https://github.com/blondiebytes

Devpost | http://devpost.com/blondiebytes

Website | http://blondiebytes.github.io

Twitter | https://twitter.com/blondiebytes

Facebook | https://www.facebook.com/blondiebytes/

Pinterest | https://www.pinterest.com/blondiebytes/

LinkedIn | https://www.linkedin.com/in/blondiebytes

Want more coding help? Sign up for a one-on-one session with me on codementor | https://www.codementor.io/blondiebytes

Original source


23 responses to “jQuery in 6 minutes | How to Use a JavaScript Library | Code in 5”

  1. Or you could use css and html
    <DOCTYPE html>

    <html>

    <head>

    <style>

    body {

    color: #fff;

    }

    .hidden:hover {

    color: #000;

    }

    </style>

    </head>

    <body>

    <center><h1 class="hidden">Hello</h1></center>

    </body>

    </html>

  2. Hi lets have programming sex.
    import java.util.Scanner;
    public class MeAndYou{
    pubic static void Sex(){
    Scanner yesorno = new Scanner(System.in);
    String me = "me";
    String you = "you";
    String sex = "Smack Smack Smack Splat splat splat";
    String consent = yesorno.nextLine();
    if(consent == "yes"){
    System.out.print(sex)
    }else{System.out.print("Take a hike");}
    }
    }

  3. You should be putting your js scripts at the bottom of your html body tags, the way your doing it, the Web page is loading the js file and the html at the same time, making a big Web page load slower

    If you put the js on the bottom of body, you'll allow the whole Web page to load first then load js when needed.

Leave a Reply