'Failed to load resource: net::ERR_FAILE

my code is this:

$.ajax({
    type: 'Get',
    url: 'https://kf.kobotoolbox.org/assets/a7GG9SXYtLTCS4FLm4mjjP/submissions/? 
    format=json',
    dataType : 'jsonp',
    success: function(data) {
          console.log(data);
     },
    error: function(data) {
      console.log("error");
  }
});

When I enter the url on web browser I got the data but I can not access with ajax



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source