About 114,000 results
Open links in new tab
  1. AJAX Introduction - W3Schools

    AJAX allows web pages to be updated asynchronously by exchanging data with a web server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.

  2. How to Make AJAX Call from JavaScript? - GeeksforGeeks

    Jul 23, 2025 · Making an Ajax call from JavaScript means sending an asynchronous request to a server to fetch or send data without reloading the web page. This allows dynamic content updates, …

  3. jQuery.ajax () | jQuery API Documentation

    The $.ajax() function underlies all Ajax requests sent by jQuery. It is often unnecessary to directly call this function, as several higher-level alternatives like $.get() and .load() are available and are easier …

  4. Ajax (programming) - Wikipedia

    Ajax is not a technology, but rather a programming pattern. HTML and CSS can be used in combination to mark up and style information. The webpage can be modified by JavaScript to dynamically display …

  5. Ajax - Glossary | MDN

    Jul 11, 2025 · Asynchronous JavaScript and XML (Ajax, or AJAX) is a web development technique in which a web app fetches content from the server by making asynchronous HTTP requests, and uses …

  6. JavaScript Ajax - Tutorial Republic

    In this tutorial you will learn what Ajax is and how to implement it in JavaScript. What is Ajax? Ajax stands for A synchronous J avascript A nd X ml. Ajax is just a means of loading data from the server …

  7. JavaScript AJAX - Online Tutorials Library

    Learn how to use AJAX in JavaScript for asynchronous web applications. Explore examples and best practices for implementing AJAX effectively.

  8. AJAX The XMLHttpRequest Object - W3Schools

    To send a request to a server, you can use the open () and send () methods of the XMLHttpRequest object: For security reasons, modern browsers do not allow access across domains. This means that …

  9. Mastering AJAX: The Complete Guide for Modern Web Developers

    Apr 8, 2025 · AJAX stands for Asynchronous JavaScript and XML. It’s a technique that allows web applications to communicate with a server in the background — without refreshing or reloading the …

  10. AJAX Tutorial: What AJAX Is and How to Use it - freeCodeCamp.org

    Feb 22, 2020 · What is AJAX? AJAX stands for Asynchronous JavaScript And XML. It is not a programming language. It is a technology for developing better, faster and interactive Web …