Answers for "json url data is not showing in console using jquery"

0

json url data is not showing in console using jquery

$.ajax({
  type: "POST",  // add type
  url: 'file.php',
  dataType: 'json', // change dataType to 'json' if its something else
  success: function(response) {
    console.log(response);
  }
});

I hope it will help you.
Namaste _/\_
Posted by: Guest on June-22-2020

Code answers related to "json url data is not showing in console using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language