JavaScript in 7 minutes | Create Interactive Websites | Code in 5




Learn how to make your websites interactive with the JavaScript in 7 minutes! We’ll review some basic HTML/CSS concepts as well.

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/DevTools%20in%205

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

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

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

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

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


29 responses to “JavaScript in 7 minutes | Create Interactive Websites | Code in 5”

  1. Very bad explanation tbh. You're not explaining what everything means. Literally all you're doing is letting people copy this code and then give them the false impression that they know javascript. But the if they go on to make another program by themselves, THEY WON'T KNOW HOW…

  2. This was such an easy tutorial but for some reason my javascript was not linking to my html properly. As a test I just deleted the js/ from script "<script src=js/(filename).js>" and it worked. Not sure how often you check the comments but if you see this could you please explain why that would happen? I tried this on 2 web browsers (IE and Chrome) my javascript would not link until I deleted the js/ first

  3. I was trying to do it the way you were doing it on your video, but I kept getting an error message. I had to change my code to this:
    var currentVal = document.getElementById("countDownButton");
    var newVal = currentVal.innerHTML – 1;
    currentVal.innerHTML = newVal;
    }

Leave a Reply