Get json data in a page

  


 $.getJSON("demo_ajax_json.js", function(result){
    $.each(result, function(i, field){
      $("div").append(field + " ");
    });
  });

Comments

Popular posts from this blog

Target class controller does not exist - Laravel 8