Thursday, April 27, 2017

AJAX

AJAX is acronym for Asynchronous JavaScript and XML. Ajax makes it possible to send and receive data asynchronously without reloading the web page. In general web applications the client(browser) is blocked when we refresh the page as it makes use of synchronous requests. But with Ajax the client is not blocked and works independently. Web applications like gmail, facebook etc make use of AJAX .

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...