Hi,
i try to get a json list and append it
$.getJSON("url",
function(data){
$('#tbl').append("<li id="listitem">asd</li>);
});
It works but i cant access the li object with
$("#listitem").hover( alert("Hover"); );
`