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.
|
|
5 years ago | |
|---|---|---|
| .. | ||
| README.md | 5 years ago | |
README.md
Quick Guide on HTML / Javascript / CSS
- Quick Tutorial on HTML / Javascript / CSS
- W3.CSS
- Javascript
- HTML
- Bootstrap CSS Framework
- Tools
- Visual Studio Code
- Extension : Live Server
Javascript Library
-
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)