Skip to content

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");
});

http://javascriptissexy.com/understand-javascript-callback-functions-and-use-them#How_Callback_Functions_Work

Free Code Camp.

Front End Development Certification

  1. HTML & CSS.
  2. Responsive web design with BootStrap.
  3. JQuery Notes.
  4. intro to JS
  5. OOP JS
  6. basic algorithm scripting.
  7. JSON API's and AJAX.

Udacity Full stack

  1. Data bases with Python.

Microsoft Professional Program

others

Clone this wiki locally