Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.09 KB

File metadata and controls

31 lines (23 loc) · 1.09 KB

Notes from 10

  • PUT
  • RESTful get to view, post to create, put with id to edit

Notes from 7

  • AJAX: Asynchronous JavaScript and XML
    • use of the XMLHttpRequest object to communicate with server-side scripts. It can send as well as receive information in a variety of formats, including JSON, XML, HTML, and even text files
  • API's

Notes from Tutorial 6

Notes from Tutorial 5

  • any time a variable is defined using a jquery selector add $ to front

Notes from Tutorial 4

https://www.youtube.com/watch?v=LYKRkHSLE2E&index=4&list=PLoYCgNOIyGABdI2V8I_SWo22tFpgh2s6_

some jquery commands we played with in console

  • $('li').eq(4).parent().parent().parent()

  • $('li:first').parent()

  • $('li:first').siblings()

  • $('ul:first').children()

  • $('li').first().toggle()

  • $('li').eq(4).parent().parent().prev().prev()

  • jquery is made to be a DOM traversal tool -- document object model