-
Notifications
You must be signed in to change notification settings - Fork 0
JSON APIs and AJAX
Ahmed Ayman edited this page Jul 3, 2017
·
1 revision
- API -> Application Programming Interfaces: tools that computers use to communicate with one another..
- JQUERY's function
//only when the code inside a page is loaded.
$(document).ready(function() {
});
//we can set event handler
$('#element').on('click',function(){
});
CallBack functions(callback pattern)
- higher level funciton ...passed to another function.
the callback function os called (or executed) inside any otherFunction
$("#btn_1").click(function() {
alert("Btn 1 Clicked");
});
- HTML & CSS.
- Responsive web design with BootStrap.
- JQuery Notes.
- intro to JS
- OOP JS
- basic algorithm scripting.
- JSON API's and AJAX.