You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.5 KiB

Quick Guide on HTML / Javascript / CSS

Javascript Library

  • jQuery

  • syntax : $(selector).action()

    • $("p").hide() : hide paragraph element
    • $("#test").hide() : hide element with id=test
    • $(".test").hide() : hide element with class=test
    • $(this).hide() : hide current element
    • more...
  • download and add this

    <!-- use downloaded jQuery library -->
    <head>
    <script src="jquery-3.5.1.min.js"></script>
    </head>
    
    <!-- use google CDN -->
    <head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    </head>
    
  • Events

    • .change()
    • .click()
    • .mouseenter()
    • more...
  • AJAX (Asynchronous JavaScript and XML) : Exchange data with server

    • $("#div1").load("demo.txt")
    • $.get(URL,data,callback)
    • $.post(URL,data,callback)
  • References Overview