jQuery - JackieWSC/Onepiece GitHub Wiki

jQuery

  • jQuery is a JavaScript library
  • jQuery is a simplifies JavaScript programming

Base Syntax

  • $(selector).action()
    • A $ sign to define/access jQuery
    • A (selector) to "query" HTML elements
    • A jQuery action() to be performed on the element
  • Example
  $(this).hide() // hides the current element
  $("p").hide() // hides all <p> elements
  $(".test").hide() // hides all elements with class="test"
  $("#test").hide() // hides the elements with id="test"