SlideShare a Scribd company logo
Powerful
https://www.udemy.com/web-development-introduction-to-jquery/?couponCode=SLIDESHARE
The most popular JavaScript library in use today
Installed on 65% of the top 10 million highest-trafficked sites on
the Web
jQuery is free, open-source software licensed under the MIT
License
jQuery is a JavaScript Library
It simplifies JavaScript programming
jQuery wraps common JavaScript tasks into a method which you
can then call with simple lines of code.
Makes it easier to navigate a document
Select DOM elements
Create animations
Handles Events
Use AJAX
Create powerful dynamic interactions with web
users via jQuery
jQuerycom
Having a experience with JavaScript and CSS will
help you get started with jQuery quicker
It’s small in size and loads quickly
Really powerful features allow you to create interactions faster
Simple straight forward
Selectors are the same as CSS
It’s easy to learn and get started with
Easier to add JavaSCript functionality to your website
JQUERY
Powerful
Introduction to jQuery
There are a number of way to get jquery
 http://jquery.com/download/
 Use CDN (Content Delivery Network)
https://developers.google.com/speed/libraries/
If you download make sure you place it in a directory that your can
access it from.
Benefits of CDN - visitors may already have it cached within their
browsers, which allows for quicker load times.
Including the library jQuery
Link to
<script
src="https://ajax.googleapis.com/ajax/libs/
jquery/1.12.2/jquery.min.js"></script>
Powerful
JQUERY
INTRODUCTION TO DOCUMENT OBJECT MODEL
jQuery, at its core, is a DOM (Document Object Model) manipulation library.
So understanding the DOM is important to understanding how jQuery works.
INTRODUCTION TO DOCUMENT OBJECT MODEL
jQuery, at its core, is a DOM (Document Object Model) manipulation library.
So understanding the DOM is important to understanding how jQuery works.
WHAT IS THE DOM? DOCUMENT OBJECT MODEL
https://en.wikipedia.org/wiki/Document_Object_Model
The Document Object Model (DOM) is a cross-platform and language-
independent convention for representing and interacting with objects in
HTML, XHTML, and XML documents. The nodes of every document are
organized in a tree structure, called the DOM tree. Objects in the DOM tree
may be addressed and manipulated by using methods on the objects. The public
interface of a DOM is specified in its application programming interface (API).
WHAT IS THE DOM? DOCUMENT OBJECT MODEL
JavaScript allows for client-side interactivity.
DOM is the standardized format for the complete model
of the webpage. Its provides a means to change any
portion of the document, handle events, and more.
To render an HTML page, most web browsers use an
internal model similar to the DOM. Nodes ( all the pieces
of the page ) are organized in a tree structure. The tree
stems from a main node referred to as the document
object.
WHAT IS THE DOM? DOCUMENT OBJECT MODEL
When a web page is loaded it creates a DOM of the
page.
JavaScript can
● JavaScript can add, change, and remove all the
HTML elements and attributes in the page
● JavaScript can change all the CSS styles in the
page
● JavaScript can react to all existing events in the
page
● JavaScript can create new events in the page
WHAT IS THE DOM? DOCUMENT OBJECT MODEL
Chrome comes with a built in DOM inspector.
We want the page to fully load before we try to access
page content!
Powerful
JQUERY
JQUERY $
Jquery Object $ uses $ to define jQuery. jQuery has two usage styles:
Via the $ function, which is a factory method for the jQuery object. These functions, often called
commands, are chainable as they all return jQuery objects.
Via $.-prefixed functions. These are utility functions, which do not act upon the jQuery object
directly.
Selectors are CSS syntax - if you are familiar with CSS selectors, jQuery selectors will be
straightforward.
JQUERY
jQuery is run when the document is ready.
<script type="text/javascript">
$(document).ready(function(){
// jQuery code
});
</script>
JQUERY
Same as the $(document).ready(function(){ but shorter. You can use either.
<script type="text/javascript">
$(function(){
// jQuery code
});
</script>
Web Development Introduction to jQuery
JQUERY SELECTORS
jQuery Selectors
Works like CSS and has its own custom selectors.
Once selected you probably will want to do something with the element.
Example l1.html
HTML AND DOM MANIPULATION
The DOM allows scripts to access and manipulate web documents.
text()
html()
val()
Example script1.js
SELECTORS SET
$(“id”).html(‘new’);
$(“.class”).html(‘new’);
$(“p”).html(‘new’);
Setting content to value of new
Changing page content
Update your HTML with jquery
SELECTORS GET
$(“#id”).html();
$(“.class”).html(); - this returns the first class value
$(“p”).html(); - this returns the first tag value
You should be specific with get on the content. Content should be retrieved from a single
element.
Get page content
SELECTORS EXPLICIT ITERATION
Looping of multiple elements.
When you loop you generally may want to apply specific changes to each of the matching
selections.
Appending of content
But you can also list out selections individually….
UPDATING HTML USING JQUERY
Append
After
prepend
Before
Empty
Remove
Although they may initially sound similar there are differences.
Events
User initiates a trigger
Most commonly used are click events
$( 'li' ).click(function( event ) {
console.log( 'clicked', $( this ).text() );
});
stops the default action of an element from
happening.
event.preventDefault();
<a></a> hyperlinks…...
hover()
dbclick()
Mousedown()
mouseenter()
mousemove()
mouseleave()
mouseover();
mouseup();
keydown() keyup()
keypress()
Get key information
blur()
focus()
change()
submit()
Traversing
JQUERY
JQUERY TRAVERSING
HTML elements in relation to other HTML elements.
Moving from the starting point element to other elements
within the page until you reach the desired element.
Parents
Children
siblings
JQUERY TRAVERSING FAMILY
First top element that contains others is an ancestor or parent
to the elements within it.
Child is descendant of the parent, and sibling to the other
elements that share the same parent.
Parent is the immediate parent whereas parents are all
ancestors up to html
JQUERY TRAVERSING FIND
Gets all the descendants of each element
JQUERY TRAVERSING SIBLINGS
next()
siblings()
nextAll()
JQUERY TRAVERSING FILTERING
first()
last()
eq()
CSS
css(propName,value)
Add classes
Remove classes
attributes
EFFECTS and ANIMATIONS
Simple hide() and show()
Fading effects
fadeIn()
fadeOut();
fadeTo();
Sliding moving the element
slideDown()
slideUp()
slideToggle()
You can perform animation
.animate()
You can add more than one effect chaining
methods together in jQuery
jQuery AJAX
Powerful
What is AJAX
asynchronous JavaScript and XML
Using AJAX web applications can send data to and retrieve data
from a server without page reloads. Ability to change content
dynamically.
Despite the name, the use of XML is not required (JSON is often
used in the AJAJ variant), and the requests do not need to be
asynchronous.
JavaScript Object Notation (JSON) is often used as an alternative
format for data interchange, although other formats such as
preformatted HTML or plain text can also be used
https://en.wikipedia.org/wiki/Ajax_(programming)
AJAX
AJAX requests happen in the background making them invisible to
the user.
Allowing you to access data that is not currently loaded within the
page.
Behavior is smooth and seamless
jQuery make AJAX easy
$.get(), $.post(), load(), $.getJSON(), $.post(), $.ajax()
Web Development Introduction to jQuery
What is JSON
JSON is an open-standard format that uses human-readable text
to transmit data objects consisting of attribute–value pairs. It is
the most common data format used for asynchronous
browser/server communication (AJAJ), largely replacing XML
which is used by AJAX.
JSON is a language-independent data format
Using LOAD() to get data
$(“#output”).load('php.php');
Uses Selectors to load the result of the AJAX call inside the
selected element
Using Get to get data
$.get('php.php', function (data) {
///reads contents of php.php into data
});
Handles the success response of the AJAX call
Free to define the behavior you want
Simple way to make AJAX calls
Static and dynamic documents both work
Using GetJSON to get data
$.get('php.php', function (data) {
///reads contents of php.php into data
});
Result type is expected JSON format
Shorthand for get retriving JSON data
Using AJAX post
$.post('php.php', data, function (data) {
///reads contents of php.php into data
});
Send data to server securely
jQuery $.ajax()
More control with settings
Used when other methods cannot be used
More about AJAX
http://api.jquery.com/category/ajax/
Same Origin policy
https://en.wikipedia.org/wiki/Same-origin_policy
https://en.wikipedia.org/wiki/Cross-origin_resource_sharing
Get the course
https://www.udemy.com/web-development-introduction-to-
jquery/?couponCode=SLIDESHARE

More Related Content

PPTX
Jquery beltranhomewrok
PDF
Javascript, DOM, browsers and frameworks basics
PPTX
A Rich Web Experience with jQuery, Ajax and .NET
PDF
jQuery -Chapter 2 - Selectors and Events
PPTX
Dom(document object model)
PDF
Web 5 | JavaScript Events
PPTX
A Rich Web experience with jQuery, Ajax and .NET
Jquery beltranhomewrok
Javascript, DOM, browsers and frameworks basics
A Rich Web Experience with jQuery, Ajax and .NET
jQuery -Chapter 2 - Selectors and Events
Dom(document object model)
Web 5 | JavaScript Events
A Rich Web experience with jQuery, Ajax and .NET

What's hot (20)

PPTX
SharePoint and jQuery Essentials
PPTX
PPT
J Query Public
PDF
Web2 - jQuery
PDF
Jquery tutorial-beginners
PDF
Learn css3
PDF
JavaScript DOM & event
PPTX
Jquery Basics
PPTX
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
PPTX
Internet and Web Technology (CLASS-6) [BOM]
PDF
Dom
PDF
Intro to jQuery
PPTX
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
PDF
Introduction to jQuery
PPT
J query b_dotnet_ug_meet_12_may_2012
PDF
JavaScript and BOM events
PDF
Intro to Javascript and jQuery
PPTX
jQuery
PPTX
A to Z about JQuery - Become Newbie to Expert Java Developer
SharePoint and jQuery Essentials
J Query Public
Web2 - jQuery
Jquery tutorial-beginners
Learn css3
JavaScript DOM & event
Jquery Basics
Internet and Web Technology (CLASS-8) [jQuery and JSON] | NIC/NIELIT Web Tech...
Internet and Web Technology (CLASS-6) [BOM]
Dom
Intro to jQuery
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
Introduction to jQuery
J query b_dotnet_ug_meet_12_may_2012
JavaScript and BOM events
Intro to Javascript and jQuery
jQuery
A to Z about JQuery - Become Newbie to Expert Java Developer
Ad

Viewers also liked (20)

PPS
El TRIPLE FILTRO
DOCX
Sistema educativo
DOCX
Respeto
DOCX
ORLYNE RIVERO CV
PPTX
Getting to Know Bootstrap for Rapid Web Development
PDF
Het aanbrengen van de eerste ontwerpen in het Rijnstate ziekenhuis in Arnhem
PDF
Improving Responsive Web Design Process 2016
PDF
IROS 2015 - Manuscript 1
PPT
3. Domingo Pérez experiencias significativas servicio comunitario
PDF
How to build a html5 websites.v1
PPTX
PPTX
.NET Standard - Under the Hood
PPTX
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
PDF
HTML5 Introduction
ODP
Introduction to jQuery
PPT
Introduction to Android Environment
PDF
HTML5 and CSS3 Today
PPTX
Responsive Web Design for Universal Access 2016
PPTX
Jquery introduction
PPT
jQuery introduction
El TRIPLE FILTRO
Sistema educativo
Respeto
ORLYNE RIVERO CV
Getting to Know Bootstrap for Rapid Web Development
Het aanbrengen van de eerste ontwerpen in het Rijnstate ziekenhuis in Arnhem
Improving Responsive Web Design Process 2016
IROS 2015 - Manuscript 1
3. Domingo Pérez experiencias significativas servicio comunitario
How to build a html5 websites.v1
.NET Standard - Under the Hood
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
HTML5 Introduction
Introduction to jQuery
Introduction to Android Environment
HTML5 and CSS3 Today
Responsive Web Design for Universal Access 2016
Jquery introduction
jQuery introduction
Ad

Similar to Web Development Introduction to jQuery (20)

PPTX
Jquery beltranhomewrok
PPT
J Query
PPTX
Introduction to jQuery
PPTX
PPTX
Starting with jQuery
PPT
J Query(04 12 2008) Foiaz
PPTX
Jqueryppt (1)
PPTX
Javascript for web Programming creating and embedding with html
PPT
PPT
JavaScript Libraries
PPT
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
PPTX
Introduction to java script, how to include java in HTML
PPTX
Introduction to jQuery
PPTX
Java Script - A New Look
PPTX
JQuery
PPTX
JS basics
PPTX
Cordova training : Day 4 - Advanced Javascript
PDF
Intro to jQuery @ Startup Institute
PDF
jQuery Interview Questions By ScholarHat.pdf
PPT
J query presentation
Jquery beltranhomewrok
J Query
Introduction to jQuery
Starting with jQuery
J Query(04 12 2008) Foiaz
Jqueryppt (1)
Javascript for web Programming creating and embedding with html
JavaScript Libraries
Jquery PPT_Finalfgfgdfgdr5tryeujkhdwappt
Introduction to java script, how to include java in HTML
Introduction to jQuery
Java Script - A New Look
JQuery
JS basics
Cordova training : Day 4 - Advanced Javascript
Intro to jQuery @ Startup Institute
jQuery Interview Questions By ScholarHat.pdf
J query presentation

More from Laurence Svekis ✔ (20)

PDF
Quiz JavaScript Objects Learn more about JavaScript
PDF
JavaScript Lessons 2023 V2
PDF
JavaScript Lessons 2023
PDF
Top 10 Linkedin Tips Guide 2023
PDF
JavaScript Interview Questions 2023
PDF
Code examples javascript ebook
PDF
Javascript projects Course
PDF
10 java script projects full source code
PDF
Chrome DevTools Introduction 2020 Web Developers Guide
PDF
Brackets code editor guide
PDF
Web hosting get start online
PDF
JavaScript guide 2020 Learn JavaScript
PDF
Web hosting Free Hosting
PDF
Web development resources brackets
PPTX
Google Apps Script for Beginners- Amazing Things with Code
PPTX
Local SQLite Database with Node for beginners
PDF
Introduction to Node js for beginners + game project
PPTX
JavaScript DOM - Dynamic interactive Code
PPTX
JavaScript Advanced - Useful methods to power up your code
PPTX
Monster JavaScript Course - 50+ projects and applications
Quiz JavaScript Objects Learn more about JavaScript
JavaScript Lessons 2023 V2
JavaScript Lessons 2023
Top 10 Linkedin Tips Guide 2023
JavaScript Interview Questions 2023
Code examples javascript ebook
Javascript projects Course
10 java script projects full source code
Chrome DevTools Introduction 2020 Web Developers Guide
Brackets code editor guide
Web hosting get start online
JavaScript guide 2020 Learn JavaScript
Web hosting Free Hosting
Web development resources brackets
Google Apps Script for Beginners- Amazing Things with Code
Local SQLite Database with Node for beginners
Introduction to Node js for beginners + game project
JavaScript DOM - Dynamic interactive Code
JavaScript Advanced - Useful methods to power up your code
Monster JavaScript Course - 50+ projects and applications

Recently uploaded (20)

PPTX
522797556-Unit-2-Temperature-measurement-1-1.pptx
DOCX
Unit-3 cyber security network security of internet system
PPTX
Introuction about WHO-FIC in ICD-10.pptx
PPTX
QR Codes Qr codecodecodecodecocodedecodecode
PDF
LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1
PDF
Decoding a Decade: 10 Years of Applied CTI Discipline
PDF
Cloud-Scale Log Monitoring _ Datadog.pdf
PPTX
Funds Management Learning Material for Beg
PPTX
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
PPTX
international classification of diseases ICD-10 review PPT.pptx
PPTX
cyber security Workshop awareness ppt.pptx
PPTX
Introduction to Information and Communication Technology
PDF
LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1
PDF
“Google Algorithm Updates in 2025 Guide”
PDF
Behind the Smile Unmasking Ken Childs and the Quiet Trail of Deceit Left in H...
PDF
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
PPTX
Internet___Basics___Styled_ presentation
PDF
Automated vs Manual WooCommerce to Shopify Migration_ Pros & Cons.pdf
PPTX
SAP Ariba Sourcing PPT for learning material
PPTX
Module 1 - Cyber Law and Ethics 101.pptx
522797556-Unit-2-Temperature-measurement-1-1.pptx
Unit-3 cyber security network security of internet system
Introuction about WHO-FIC in ICD-10.pptx
QR Codes Qr codecodecodecodecocodedecodecode
LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1
Decoding a Decade: 10 Years of Applied CTI Discipline
Cloud-Scale Log Monitoring _ Datadog.pdf
Funds Management Learning Material for Beg
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
international classification of diseases ICD-10 review PPT.pptx
cyber security Workshop awareness ppt.pptx
Introduction to Information and Communication Technology
LABUAN4D EXCLUSIVE SERVER STAR GAMING ASIA NO.1
“Google Algorithm Updates in 2025 Guide”
Behind the Smile Unmasking Ken Childs and the Quiet Trail of Deceit Left in H...
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
Internet___Basics___Styled_ presentation
Automated vs Manual WooCommerce to Shopify Migration_ Pros & Cons.pdf
SAP Ariba Sourcing PPT for learning material
Module 1 - Cyber Law and Ethics 101.pptx

Web Development Introduction to jQuery

  • 2. The most popular JavaScript library in use today Installed on 65% of the top 10 million highest-trafficked sites on the Web jQuery is free, open-source software licensed under the MIT License jQuery is a JavaScript Library It simplifies JavaScript programming
  • 3. jQuery wraps common JavaScript tasks into a method which you can then call with simple lines of code. Makes it easier to navigate a document Select DOM elements Create animations Handles Events Use AJAX
  • 4. Create powerful dynamic interactions with web users via jQuery
  • 5. jQuerycom Having a experience with JavaScript and CSS will help you get started with jQuery quicker
  • 6. It’s small in size and loads quickly Really powerful features allow you to create interactions faster Simple straight forward Selectors are the same as CSS It’s easy to learn and get started with Easier to add JavaSCript functionality to your website
  • 8. Introduction to jQuery There are a number of way to get jquery  http://jquery.com/download/  Use CDN (Content Delivery Network) https://developers.google.com/speed/libraries/ If you download make sure you place it in a directory that your can access it from. Benefits of CDN - visitors may already have it cached within their browsers, which allows for quicker load times.
  • 9. Including the library jQuery Link to <script src="https://ajax.googleapis.com/ajax/libs/ jquery/1.12.2/jquery.min.js"></script>
  • 11. INTRODUCTION TO DOCUMENT OBJECT MODEL jQuery, at its core, is a DOM (Document Object Model) manipulation library. So understanding the DOM is important to understanding how jQuery works.
  • 12. INTRODUCTION TO DOCUMENT OBJECT MODEL jQuery, at its core, is a DOM (Document Object Model) manipulation library. So understanding the DOM is important to understanding how jQuery works.
  • 13. WHAT IS THE DOM? DOCUMENT OBJECT MODEL https://en.wikipedia.org/wiki/Document_Object_Model The Document Object Model (DOM) is a cross-platform and language- independent convention for representing and interacting with objects in HTML, XHTML, and XML documents. The nodes of every document are organized in a tree structure, called the DOM tree. Objects in the DOM tree may be addressed and manipulated by using methods on the objects. The public interface of a DOM is specified in its application programming interface (API).
  • 14. WHAT IS THE DOM? DOCUMENT OBJECT MODEL JavaScript allows for client-side interactivity. DOM is the standardized format for the complete model of the webpage. Its provides a means to change any portion of the document, handle events, and more. To render an HTML page, most web browsers use an internal model similar to the DOM. Nodes ( all the pieces of the page ) are organized in a tree structure. The tree stems from a main node referred to as the document object.
  • 15. WHAT IS THE DOM? DOCUMENT OBJECT MODEL When a web page is loaded it creates a DOM of the page. JavaScript can ● JavaScript can add, change, and remove all the HTML elements and attributes in the page ● JavaScript can change all the CSS styles in the page ● JavaScript can react to all existing events in the page ● JavaScript can create new events in the page
  • 16. WHAT IS THE DOM? DOCUMENT OBJECT MODEL Chrome comes with a built in DOM inspector. We want the page to fully load before we try to access page content!
  • 18. JQUERY $ Jquery Object $ uses $ to define jQuery. jQuery has two usage styles: Via the $ function, which is a factory method for the jQuery object. These functions, often called commands, are chainable as they all return jQuery objects. Via $.-prefixed functions. These are utility functions, which do not act upon the jQuery object directly. Selectors are CSS syntax - if you are familiar with CSS selectors, jQuery selectors will be straightforward.
  • 19. JQUERY jQuery is run when the document is ready. <script type="text/javascript"> $(document).ready(function(){ // jQuery code }); </script>
  • 20. JQUERY Same as the $(document).ready(function(){ but shorter. You can use either. <script type="text/javascript"> $(function(){ // jQuery code }); </script>
  • 22. JQUERY SELECTORS jQuery Selectors Works like CSS and has its own custom selectors. Once selected you probably will want to do something with the element. Example l1.html
  • 23. HTML AND DOM MANIPULATION The DOM allows scripts to access and manipulate web documents. text() html() val() Example script1.js
  • 25. SELECTORS GET $(“#id”).html(); $(“.class”).html(); - this returns the first class value $(“p”).html(); - this returns the first tag value You should be specific with get on the content. Content should be retrieved from a single element. Get page content
  • 26. SELECTORS EXPLICIT ITERATION Looping of multiple elements. When you loop you generally may want to apply specific changes to each of the matching selections. Appending of content But you can also list out selections individually….
  • 27. UPDATING HTML USING JQUERY Append After prepend Before Empty Remove Although they may initially sound similar there are differences.
  • 29. User initiates a trigger Most commonly used are click events $( 'li' ).click(function( event ) { console.log( 'clicked', $( this ).text() ); });
  • 30. stops the default action of an element from happening. event.preventDefault(); <a></a> hyperlinks…...
  • 36. JQUERY TRAVERSING HTML elements in relation to other HTML elements. Moving from the starting point element to other elements within the page until you reach the desired element. Parents Children siblings
  • 37. JQUERY TRAVERSING FAMILY First top element that contains others is an ancestor or parent to the elements within it. Child is descendant of the parent, and sibling to the other elements that share the same parent. Parent is the immediate parent whereas parents are all ancestors up to html
  • 38. JQUERY TRAVERSING FIND Gets all the descendants of each element
  • 41. CSS
  • 47. Sliding moving the element slideDown() slideUp() slideToggle()
  • 48. You can perform animation .animate()
  • 49. You can add more than one effect chaining methods together in jQuery
  • 51. What is AJAX asynchronous JavaScript and XML Using AJAX web applications can send data to and retrieve data from a server without page reloads. Ability to change content dynamically. Despite the name, the use of XML is not required (JSON is often used in the AJAJ variant), and the requests do not need to be asynchronous. JavaScript Object Notation (JSON) is often used as an alternative format for data interchange, although other formats such as preformatted HTML or plain text can also be used https://en.wikipedia.org/wiki/Ajax_(programming)
  • 52. AJAX AJAX requests happen in the background making them invisible to the user. Allowing you to access data that is not currently loaded within the page. Behavior is smooth and seamless jQuery make AJAX easy $.get(), $.post(), load(), $.getJSON(), $.post(), $.ajax()
  • 54. What is JSON JSON is an open-standard format that uses human-readable text to transmit data objects consisting of attribute–value pairs. It is the most common data format used for asynchronous browser/server communication (AJAJ), largely replacing XML which is used by AJAX. JSON is a language-independent data format
  • 55. Using LOAD() to get data $(“#output”).load('php.php'); Uses Selectors to load the result of the AJAX call inside the selected element
  • 56. Using Get to get data $.get('php.php', function (data) { ///reads contents of php.php into data }); Handles the success response of the AJAX call Free to define the behavior you want Simple way to make AJAX calls Static and dynamic documents both work
  • 57. Using GetJSON to get data $.get('php.php', function (data) { ///reads contents of php.php into data }); Result type is expected JSON format Shorthand for get retriving JSON data
  • 58. Using AJAX post $.post('php.php', data, function (data) { ///reads contents of php.php into data }); Send data to server securely
  • 59. jQuery $.ajax() More control with settings Used when other methods cannot be used
  • 60. More about AJAX http://api.jquery.com/category/ajax/ Same Origin policy https://en.wikipedia.org/wiki/Same-origin_policy https://en.wikipedia.org/wiki/Cross-origin_resource_sharing Get the course https://www.udemy.com/web-development-introduction-to- jquery/?couponCode=SLIDESHARE