Users Pricing

forum

home / developersection / forums / send json data with jquery

Send JSON data with jQuery

Anonymous User 1709 21 Mar 2018

I want to send data as Json format but why this code returning Name=Mindstick City=Allahabad 

var arr = {Name:'Mindstick', City:Allahabad};

$.ajax(
   {
        url: "Ajax.ashx",
        type: "POST",
        data: arr,
        dataType: 'json',
        async: false,
        success: function(msg) {
            alert(msg);
        }
    }
);

can any helpme


I am a content writter !


1 Answers