Answers for "array data send post ajax jqueyr"

2

jquery ajax $.post with data

$.post('http://example.com/form.php', {category:'client', type:'premium'}, function(response){ 
      alert("success");
      $("#mypar").html(response.amount);
});
Posted by: Guest on March-12-2020
-2

how to send js array from ajax

$.ajax({
            type: "POST",
            url: "submit",
            data:JSON.stringify(detailsArr),
            success: function(html){
              alert( "Submitted");
                }
          });
Posted by: Guest on November-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language