$.ajax IE issue....
$.ajax IE issue....
Of course this works in every browser except IE....help? Nothing displays at all in the list div...
- $.ajax({
url:'/index.php?sid=' + $_GET.sid + '&sub=99&id=' + $_GET.id + '&action=1&start=' + start<?= $activity->isShared() ? (' + \'&type=\' + $("#type").val()') : '' ?>,
dataType: 'json',
async:false,
success: function(data){
$("#list").html(data.events);
if (data.can_complete)
attachCompleteEvent();
else
removeCompleteEvent();
setModalComments(data.modal_comment);
}
});