I have some json structured so
({
"items" : [
{
"color" : "B83D7A",
"name" : "example"
}
]})
and the rest of the code is
<script type="text/javascript">
$.getJSON("favourites.json", function (data) {
var htmlString = "";
$.each(data.items, function (i, item) {
var url = "http://" + item.name + ".com";
var color = item.color;
htmlString += '<a href="' + url + '" target="_blank">';
htmlString += '<p style="color: #' + color + ';">';
htmlString += item.name;
htmlString += '</p></a>';
});
$('#favourites').html(htmlString);
});
</script>
<div id="favourites"></div>
I'm not getting any errors but nothing is happening,
please help as I have no idea what is wrong.
Thank you :)
$.getJSON('favourites.json', function (data) { alert(data); });– sdleihssirhc Feb 19 '11 at 17:54