JavaScript Tutorial For Beginners 01 – Introduction




Hey ninja’s, glad you decided to take the JavaScript train and join me on this epic journey of JavaScript tutorials for beginners. We’ll be covering all the basics, and certainly enough to get you up and running making your own JavaScript programs for your websites.

If you need to cacth up on HTML or CSS first, check out my playlists below:

HTML for Beginners – https://www.youtube.com/playlist?list=PL4cUxeGkcC9ibZ2TSBaGGNrgh4ZgYE6Cc

CSS for Beginners – https://www.youtube.com/playlist?list=PL4cUxeGkcC9gQeDH6xYhmO-db2mhoTSrT

Brackets can be found @ http://brackets.io/

And you can download Chrome @ https://www.google.com/chrome/browser/desktop/index.html

===== SUBSCRIBE TO CHANNEL =====

https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg?sub_confirmation=1

========== CSS for Beginners Playlist ==========

========== HTML Basics Course ==========

========== The Net Ninja ============

For more front-end development tutorials & to black-belt your coding skills, head over to – https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg or http://thenetninja.co.uk

========== Social Links ==========

Twitter – @TheNetNinja – https://twitter.com/thenetninjauk

Original source


39 responses to “JavaScript Tutorial For Beginners 01 – Introduction”

  1. HTML CODE:

    <body>
    <form post="method" action=" ">
    <input type="text" id="uname" name="username"/>
    <input type="submit" onclick="example">
    <div id="feedback">
    </div>
    </form>
    </body>

    JAVASCRIPT CODE:
    fucntion example()
    {
    var el=document.getElementById('uname');
    var elmsg=document.getElementById('feedback');
    if(el.value.length<7)
    {
    elmsg.textContent="enter the username more than "+ 7+'lettres';
    }
    else{
    elmsg=' ';
    }
    }
    OUTPUT:

    error:use post method

    My doubt is what to use in action attribute for form validation through javascript .my action attribute is empty bcz of that am getting that error..please explain.

    Thanks!

  2. This channel is epic. Love the ninja sounds as I consider myself a ninja.samurai in my past life. Haha! Well let's hope my journey to Javascript will be fruitful with your playlist! I come from C and python So I am hoping this will be fun!

  3. Ready for this one after reviewing HTML with you and learning about CSS, on my way to doing AngularJS.

    You do a great job of explaining and showing how to do things. Keep trucking, man.

  4. Just found your channel, nice thing you have going on here. Well done for sharing knowledge and helping others. I have to ask mind, your accent sounds very local. Are you North West England?

  5. After going through all the tutorials and practicing enough would I be able to make an animated web page. And may be able to make a dropdown menu? I will start tomorrow. So are these tutorials worth it?

  6. Hi mate,First of all your videos are awesome man! I'm currently trying to learn javascript at the moment and I just started with your videos. By the way, my question is – how can I start a career in Web Designing or Front-end web dev? I mean, I just started learning html, css, and currently on javascript. How long would you say it take for me to be able to create a website on my own? You know, a functional website with say, 2-4 pages with animation and such? I'm just wondering if it would be possible for me to get a career out of it. Hope you can respond to this one. Thanks heaps!Cheers!

Leave a Reply