JavaScript & jQuery Tutorial for Beginners – 2 of 9 – jQuery Selectors




http://www.LittleWebHut.com
jQuery Selectors. This tutorial demonstrates how to use jQuery Selectors. This is a good tutorial for beginners.

Link to the code used in this video.
http://www.littlewebhut.com/javascript/jquery_selectors/

jQuery website
http://jquery.com

Original source


33 responses to “JavaScript & jQuery Tutorial for Beginners – 2 of 9 – jQuery Selectors”

  1. Great videos. Very clearly and slowly explained, exactly as they should be. It is good to see such a clear explanation instead of a "bluffed" over one like many of the young guys seem to do. Keep up the good work.

    My only tiny criticism is that I noticed you described a "#" sign as a "pound sign" in lesson 2?

    Being British a pound sign is "£" not "#" which is normally described as a hash sign.

  2. learning JQuery through these videos so far has been easy and really useful don't know why I have lost so much time to get started, thanks I am really happy with this content and getting everything 100%

  3. for the first tutorial sir the following code working well
    $(document).ready(function() {

     $("p").hide();

      $("h1").click(function() {
        $(this).next().slideToggle(300);
      });

    // alert("hello the code working " );
    });

Leave a Reply