I have a URL \"http://localhost:8888/api/rest/abc\" which will give following json data. I wants to get this data in my UI using Jquery or java script. I\'m trying
http://localhost:8888/api/rest/abc
You can use us jquery function getJson :
$(function(){ $.getJSON('/api/rest/abc', function(data) { console.log(data); }); });