ajax exmaple\
$.ajax({
    url:'your url',
    type: 'POST',  // http method
    data: { myData: 'This is my data.' },  // data to submit
    success: function (data, status, xhr) { // after success your get data
        $('p').append('status: ' + status + ', data: ' + data);
    },
    error: function (jqXhr, textStatus, errorMessage) { // if any error come then 
            $('p').append('Error' + errorMessage);
    }
});
jQuery AJAX methods
$.ajax()			Performs an async AJAX request
$.ajaxPrefilter()	Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax()
$.ajaxSetup()		Sets the default values for future AJAX requests
$.ajaxTransport()	Creates an object that handles the actual transmission of Ajax data
$.get()				Loads data from a server using an AJAX HTTP GET request
$.getJSON()			Loads JSON-encoded data from a server using a HTTP GET request
$.parseJSON()		Deprecated in version 3.0, use JSON.parse() instead. Takes a well-formed JSON string and returns the resulting JavaScript value
$.getScript()		Loads (and executes) a JavaScript from a server using an AJAX HTTP GET request
$.param()			Creates a serialized representation of an array or object (can be used as URL query string for AJAX requests)
$.post()			Loads data from a server using an AJAX HTTP POST request
ajaxComplete()		Specifies a function to run when the AJAX request completes
ajaxError()			Specifies a function to run when the AJAX request completes with an error
ajaxSend()			Specifies a function to run before the AJAX request is sent
ajaxStart()			Specifies a function to run when the first AJAX request begins
ajaxStop()			Specifies a function to run when all AJAX requests have completed
ajaxSuccess()		Specifies a function to run when an AJAX request completes successfully
load()				Loads data from a server and puts the returned data into the selected element
serialize()			Encodes a set of form elements as a string for submission
serializeArray()	Encodes a set of form elements as an array of names and values
make ajax calls with jQuery
// GET Request
    $.ajax({
        url: "example.php?firstParam=Hello&secondParam=World", //you can also pass get parameters
        dataType: 'json',	//dataType you expect in the response from the server
        timeout: 2000
    }).done(function (data, textStatus, jqXHR) {
        //your code here
    }).fail(function (jqXHR, textStatus, errorThrown) {
        console.log("jqXHR:" + jqXHR);
        console.log("TestStatus: " + textStatus);
        console.log("ErrorThrown: " + errorThrown);
    });

//POST Request
    var formData = {name: "John", surname: "Doe", age: "31"}; //Array 
    $.ajax({
        url: "example.php",
        type: "POST", // data type (can be get, post, put, delete)
        data: formData, // data in json format
       	timeout: 2000,	//Is useful ONLY if async=true. If async=false it is useless
        async: false, // enable or disable async (optional, but suggested as false if you need to populate data afterwards)
        success: function (data, textStatus, jqXHR) {
            //your code here
        },
        error: function (jqXHR, textStatus, errorThrown) {
            console.log("jqXHR:" + jqXHR);
            console.log("TestStatus: " + textStatus);
            console.log("ErrorThrown: " + errorThrown);
        }
    });


//Alternatively, the old aproach is
    $.ajax({
        url: "api.php?action=getCategories",
        dataType: 'json',
        timeout: 2000,
        success: function (result, textStatus, jqXHR) {   //jqXHR = jQuery XMLHttpRequest
            /*You could put your code here but this way of doing it is obsolete. Better to use .done()*/
        },
        error: function (jqXHR, textStatus, errorThrown) {
            console.log("jqXHR:" + jqXHR);
            console.log("TestStatus: " + textStatus);
            console.log("ErrorThrown: " + errorThrown);
        }
    });
jquery ajax request
$.ajax({
    url: "https://uzhackersw.uz/api/blogdelete/",
    type: "POST",
    data: {
        idbu: a
    },
  timeout: 10000,
    beforeSend: function() {
        $("#dellbl").attr("disabled", !0), $("#dell").attr("disabled", !0), $("#ochnet").attr("disabled", !0);
    },
    success: function(t) {
        t.suecces ? (toastr.success("Fikr sharh o'chirib tashlandi", "Muvafaqiyatli"), $("#mistakeModal").modal("hide"), $("#coment_" + a).remove()) : toastr.error.message("Sharh fikrni o'chirib bo'lmadi", "Xatolik ")
    }
  error: function(t) {
  alert("aaaa")
    }
});

Javascript相关代码片段

node querystring

function return a function

Passing a function as an argument

Assigning a function to a variable

regex caractère spécila

react full pagination without plugin

mysql connection pool

fetchPriority, image, loading image

scale rotation transformation using matrix

scale rotation transformation matrix

json not escaping chars well js

prevent save in before_save js frappe

swagger.json use bearer token

javascript isFunction

remove null, undefined or empty value on object

what is swiper used for?

use variable name inside string js

how to double number 2 number nodejs

dynamic nav tabs

dropzone file upload

fastest javascript map methods

nested conditional operator js

javascript subscribe example

javascript call function from external script

copy text to clipboard on click javascript

get age from date of birth javascript

Entity in nestjs

react js particles

$store.commit

Generate dates array using date range

electron nodemon

puppeteer kasada solver

react charts

xss sanitizer for next js

sort an arra

uncaught error: no url provided.

accordian js jquery ui

scrollreveal scrolling delay animations

oracle apex get page item value in javascript

manifest.json chrome extension

remove angular material theme

Lifting state up in ReactJS

firestore pagination example javascript

github javascript projects for beginners

react js scroll top

js listen for click on link

js listen for change in url subdomain

js detect change in subdomain name

how to detect when the browser url changes js

jquery animate counter

vs code console.log();

create a folder in vs code with its files

JavaScript Regex to Replace Links

complex javascript code

react change background color on scroll

angular mat-select default value

unit test angular

discord js audio not playing

forgot kali linux username and password

jquery removedata

process on unhandled exception

checkbutton tkinter get value

github delete local branch

laravel validation boolean must be true

set background image android

how to pass generic list as parameter in c#

cypress waiting for new page to load

leave input event

discord.js abortcontroller is not defined

asp.net mvc ajax post to controller

json dumps single quotes

@iconify-icons npm

invalid json response datatable

math array javascript

add icon to bottom tab navigator react native

how to set form invalid in angular 7

close modal after submit angular 8

jquery validate multiple fields with same name

get time seconds javascript

can js see zoom percentage