I have a JSON list, http://dcc.assentbc.co.uk/GetClients.aspx?SecureID=1885524
and I need this to be displayed as a html list like so
<ul>
<li><a href="Menu.html">CompanyName1</a></li>
<li><a href="Menu.html">CompanyName2</a></li>
<li><a href="Menu.html">CompanyName3</a></li>
<li><a href="Menu.html">CompanyName4</a></li>
etc ...
</ul>
Where do I start?
TRIAL AND ERROR - ONE OF THE CODES I USED... I AM NEW TO JSON (TODAY)
$.getJSON(
"http://dcc.assentbc.co.uk/GetClients.aspx?SecureID=1885524",
function(data) {
var URL = $('.Clients').empty();
// the actual contents of this loop will be
// specific to the data
for (var k in data) {
$('<option></option>')
.companyName(data[k].companyName);
}
}
)