About 575,000 results
Open links in new tab
  1. 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 …

  2. Ajax (programming) - Wikipedia

    The built-in XMLHttpRequest object is used to execute Ajax on webpages, allowing websites to load content onto the screen without refreshing the page. Ajax is not a new technology, nor is it a new …

  3. 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.

  4. 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 …

  5. jQuery ajax () Method - GeeksforGeeks

    Jul 11, 2025 · The jQuery ajax () method is used to perform asynchronous HTTP requests, allowing you to load data from a server without reloading the webpage. It provides a flexible way to interact with …

  6. jQuery jQuery.ajax () Method - CodeToFun

    May 14, 2024 · In this guide, we'll explore the jQuery.ajax() method in detail, including its syntax, common use cases, and practical examples to help you effectively implement Ajax functionality in …

  7. What Is Ajax and How It Works - Hostinger

    2 days ago · The term AJAX stands for Asynchronous JavaScript and XML. Understanding AJAX is essential for web developers since it is commonly used in popular web applications like Google …

  8. How to use $.ajax (). A complete guide with code ... - CreativelyCode

    Jun 27, 2020 · The $.ajax() function found in jQuery library is used to perform asynchronous HTTP requests leveraging AJAX. Let's start by recapping on what AJAX is and how it works.

  9. jQuery ajax () Method - TutorialsTeacher.com

    The jQuery ajax () method provides core functionality of Ajax in jQuery. It sends asynchronous HTTP requests to the server. Syntax: $.ajax (url); $.ajax (url, [options]);

  10. What is Ajax - GeeksforGeeks

    Jul 23, 2025 · That's the magic of AJAX. Asynchronous JavaScript and XML (AJAX) is a web development technique that allows web pages to communicate with a web server asynchronously, …