Profile image for Wojtas Lapski Lu6ith
Ajax method
Language
JavaScript
Tags
ajax javascript jquery

Jquery Ajax method

1 $.ajax({ 2 type: "GET", 3 url: filename, 4 async: false, 5 beforeSend: function(x) { 6 if(x && x.overrideMimeType) { 7 x.overrideMimeType("application/j-son;charset=UTF-8"); 8 } 9 }, 10 dataType: "json", 11 success: function(data){ 12 //do your stuff with the JSON data 13 } 14 });

Comments