I have this code:
$.ajax({
        url : url,
        data : {ids : JSON.stringify(jsonids), hotel_id: hotel_id},
        success : function(response)
        {
            $('#be-images ul').prepend(response).fadeIn('slow');
        },
        dataType: 'html'
    });
but the fade In does not work...I want the content to be prepended and faded in...how will I do this?
Thanks in advance!
 
     
     
     
    