I have an ajax request below that successfully returns the results. The results return is like the below.
Results structure
This is the ajax request that returns the structure above. File
$.ajax({
url: domain+$(this).val(),
dataType: 'jsonp',
success: function (results) {
$("#suggesstion-box").show();
$("#suggesstion-box").html(results);
console.log(results);
},
});
Now how do I make the results return in the #suggestion-box like like this way?
Internet Explorer
Internet Speed Test
Internet
At the moment, it shows like this in my #suggestion box with the code above
Internet Explorer, Internet Speed Test,Internet
