List click event
Hi,
I have used jquery as the click event handler on the listview control on different applications, but the latest application fails when the click event is added! The only difference I can spot is that the working app is referencing jquery 1.8.2 and the version that fails is referencing jquery 1.9.1 has the click event changed between versions?
jquery:
Appery('loadlis').append(
$('').append(
$('span').attr('class', 'loadlist').append('Test Record')));
});
}
$('.loadlist').live('click', function() {
alert('click');
});/span