i already looked up a lot of sites and threads but couldn't find an answer for my issue.
My JSON looks like this:
{
"Pizza Margharita": {
"price1": "4,50 €"
},
"Pizza Caprese ": {
"price1": "4,00 €"
}
}
My jquery-function like this:
$(function() {
$.getJSON('data/food01.json', function(data) {
$.each(data, function(name, price) {
$('section#food01').find('ul').append('<li><a href="#order"><h3>'+name+'</h3><span>'+price.price1+'</span></a></li>');
});
});
var food01size = $('#food01 ul li a').length;
$('#food01 li a').live('click',function(){
alert(food01size);
});
});
I need to get the .length of the li or a elements. The value for foodsize01 is always "0". That's because the data is loaded asynchron.
Anybody ideas what's the problem?