Phil
0
Q:

jquery ajax

$.ajax('/jquery/submitData', {
    type: 'POST',  // http method
    data: { myData: 'This is my data.' },  // data to submit
    success: function (data, status, xhr) {
        $('p').append('status: ' + status + ', data: ' + data);
    },
    error: function (jqXhr, textStatus, errorMessage) {
            $('p').append('Error' + errorMessage);
    }
});
24
var formdata = new FormData();
formdata.append("post_name","value");
$.ajax({
  type: "POST",
  url: "file.php",
  data: formdata,
  contentType: false,
  processData: false,
  success: function (response) {
  	console.log(response);
  }
});
9
$.ajax({
  type:"GET/POST",
  url: "target url",
  data: "var1=" + data1,
  success: function(msg){
    $("#targethtml").html(msg)
  },
  error: function(errormsg){
    console.log(errormsg)
  }
});
1
 $.ajax({

   url     : "file.php",
   method  : "POST",

       data: { 

         //key                      :   value 
         action                   	:   action , 
         key_1   					:   value_key_1,
         key_2   					:   value_key_2
       }
   })

   .fail(function() { return false; })

	// Appel OK
   .done(function(data) {

   console.log(data);

 });
11
$.ajax({
    url: 'https://example.com/your-page',
    success:function(data){
        //'data' is the value returned.
    },
    error:function(){
        alert('An error was encountered.');
    }
});
4

$(document).ready(function(){
  $("button").click(function(){
    $.ajax({url: "demo_ajax_script.js", dataType: "script"});
  });
});
1
$('#main-menu a').on('click', function(event) {
  event.preventDefault();

  $.ajax(this.href, {
    success: function(data) {
      $('#main').html($(data).find('#main *'));
      $('#notification-bar').text('The page has been successfully loaded');
},
    error: function() {
      $('#notification-bar').text('An error occurred');
    }
  });
});
0
	$.ajax({
        type: "POST",
        url: "action.php",
        data: {
            key_1   :   value_1,
            key_2   :   value_2
        },
        success: function (response) {
        	console.log(response);
            
        }
    });
0
train function ajax
0

New to Communities?

Join the community