Jquery trying to split a single message into 2 html elements
Hi I have the following line of code that receives data from an API call and shows them in an HTML page. $.getJSON("https://localhost:44326/api/Facebook/GetFeed?accessToken=" + response.authResponse.accessToken) .done(function (data) { $.each(data, function (key, item) { console.log(item); for (i in item) { $('<li>',…