12: What Are Events In JavaScript | JavaScript Tutorial | Learn JavaScript Programming

Поделиться
HTML-код
  • Опубликовано: 19 окт 2016
  • What Are Events In JavaScript | JavaScript Tutorial | Learn JavaScript Programming. In this video you will learn about the HTML event attributes and how to use them in JavaScript.
    List of different HTML events: www.w3schools.com/tags/ref_eve...
    --
    mmtuts is a RUclips channel that focuses on teaching beginner and advanced courses in various multimedia related skills.
    We plan to make tutorials available on programming, video production, animation, graphic design, and on software such as the Adobe Creative Cloud programs.
    JavaScript for beginners is a how to series that teaches the JavaScript coding language to people who are just starting out learning programming. The course teaches how JavaScript scripting can be made easy and teaches how to build many features on websites through behavior using JavaScript. Creating behavior on websites with JavaScript is easy and should not be seen as otherwise, which is why we want to explain the language in a easy to understand way for beginners.
    If you have suggestions on new courses, or specific lessons within existing courses you would like to see, then feel welcome to submit them in the comment section or in a private message. ALL suggestions will be seen, but not all will be replied to since we get quite a few every day.

Комментарии • 38

  • @bilalhaider4565
    @bilalhaider4565 3 года назад

    I have tried many tutorials on the internet but you are the best. You explain js in a very easy manner.
    Keep up the good work.
    God Bless !!!

  • @turdferguson195
    @turdferguson195 6 лет назад

    you sir are a gentleman and a scholar! Thanks for your videos!

  • @nigelpallatt
    @nigelpallatt 6 лет назад

    Great! Thank you.

  • @returnedfaith7254
    @returnedfaith7254 6 лет назад

    Thanks. It's so awesome.

  • @divyasampath9500
    @divyasampath9500 5 лет назад

    I now understood the Navstatus part. Thanks for the update.

  • @BalochiVideos
    @BalochiVideos 7 лет назад +10

    i love you sir. i learn lots thing for you. your my hero

  • @Divv
    @Divv 6 лет назад

    Very well explained mister!!

  • @karenvoskanyan5132
    @karenvoskanyan5132 6 лет назад

    Thank You Very Much You are Awesome

  • @MohamedAyman-li6rp
    @MohamedAyman-li6rp 6 лет назад

    Thanks, Daniel.

  • @SurenderKumar-pb3wh
    @SurenderKumar-pb3wh 7 лет назад

    you are awesome man...
    :)

  • @AimeeKatherine
    @AimeeKatherine 7 лет назад

    Thank you!

  • @ruinogueira1728
    @ruinogueira1728 7 лет назад

    thaks for the help! :)

  • @tarunaggarwal4019
    @tarunaggarwal4019 7 лет назад

    SIr thanks a lot, I just want to know where is the video on different styling methods ? Where we can style multiple things.

  • @borreguitoarremangado
    @borreguitoarremangado 7 лет назад

    I love this video series :)
    so clear and useful. thanks !

  • @romanticscents
    @romanticscents 6 лет назад

    Thank u.

  • @goyuardian8205
    @goyuardian8205 5 лет назад

    it's fun...,😀

  • @Ben-ui5sc
    @Ben-ui5sc 5 лет назад

    what font you got going on here please? great tut though, bravo

  • @eliyalee1684
    @eliyalee1684 6 лет назад

    You are the best js teacher on YT.

  • @NERO-ez1mn
    @NERO-ez1mn 5 лет назад

    can you make more excercises using the EVENTS on click? like when you input something happens? or click something two number will be add?

  • @victorbejenaru7577
    @victorbejenaru7577 7 лет назад +3

    Hello, can you do more tutorials about PHP, with more advanced topics ?

    • @surfinbird71
      @surfinbird71 7 лет назад

      Go to Laracasts.com and do the series called "The PHP Practitioner".. it is free.

  • @jithzz440
    @jithzz440 3 года назад

    hey bro.. This video not in ur JS playlist ?.. in that playlist 12th video is something abt Arrays ..

  • @harrydhindsa6759
    @harrydhindsa6759 7 лет назад

    can anyone tell me how to get javascript completions ? I dont get them by default

  • @TheLeontheking
    @TheLeontheking 6 лет назад

    now i know why sites pop up some "please stay"-like windows when i direct my mouse to the "close tab"

  • @muhamadabdulsamad2815
    @muhamadabdulsamad2815 6 лет назад

    Hey guys, I have a question that is it important to study both JavaScript and PHP for making a normal Web Or PHP is enough? Please answer~
    Thanks :D

    • @muhamadabdulsamad2815
      @muhamadabdulsamad2815 6 лет назад

      Connor Boucher thanks a lot for replying, but I think I could study both of them because as I watched some tutorial in both subjects I didn't find that difficult to learn both of them,, thanks again~

  • @SaadAhmed-js5ew
    @SaadAhmed-js5ew 6 лет назад

    from where do i get this code?

  • @felipexnota
    @felipexnota 7 лет назад

    Thanks for the tutorial.
    i have a problem
    i dont know why my JS doesnt work. Im trying something a little bit different.
    I made another JS file and then i write . I try with script inside the body and nothing.
    and the code is this:
    //only with this line doesnt work neither
    $('.box').hide();
    $('.clickme').each(function() {
    $(this).show(0).on('click', function(e) {
    e.preventDefault();
    $(this).next('.box').slideToggle('fast', function() {
    $(this).prev().html($(this).is(':visible') ? 'Hide' : 'Show');
    });
    });
    });

    • @Dani_Krossing
      @Dani_Krossing  7 лет назад

      You are writing jQuery code which is a JavaScript framework. That's why it isn't working because you need to have a jQuery library included.

    • @felipexnota
      @felipexnota 7 лет назад

      yes i add one but noghint yet

    • @Dani_Krossing
      @Dani_Krossing  7 лет назад +2

      I would recommend starting out with changing the jQuery file to something more simple like "jquery.js", just to avoid any accidental spellings :)
      Did you make sure that the jquery library is at the very top of your document inside your tags? Because it needs to be loaded first.

  • @AhmedAbdelkaoui
    @AhmedAbdelkaoui 7 лет назад

    why you didn't use else only? why else if?

    • @Dani_Krossing
      @Dani_Krossing  7 лет назад +4

      Both are usable and will work. In my mind it seemed easier for people without coding experience to understand because I haven't made a video on this yet.

  • @realgabreal
    @realgabreal 6 лет назад

    Thank you!