I want to dynamically append data received via an url in JSOn format to my listview. But i can't figure out how it works.
The mobile website retrieve the object in the following format:
[
{"id":1, "start":"2011-10-29T13:15:00.000+10:00", "end":"2011-10-29T14:15:00.000+10:00", "title":"Meeting"}
]
In the .html i have one listview and a function, where i try to append the received data. I show only the body.
<body>
<div>
<ul id="listview">
<script>$.getJSON("url",
function(data){
$.each(data, function(i,data){
i.title.appendTo("#listview");
});});</script>
</ul>
</div>
</body>
Probably it's very easy, but i'm new to web programming and i can't figure out how that i should append the retrieved data.
Can anyone please help me out ?