An AJAX request downloads text and jpg thumbnails from a website, which are then displayed in separate cells in a table, all created on the fly with jQuery. This all works fine on Android but the thumbnails do not display in iPhone or iPad (I haven't tested other Apple devices). The text displays correctly on iPhone and iPad. The thumbnails are about 40Kb each. This is not a mobile app. This is my javascript:
var newCell = $('<td>').addClass('photoCell textCell');
$(newRow).append(newCell);
$('<img />').prop({
'src': "data:image/jpeg;base64;charset=utf-8,"+obj_elem,
'className': 'buyPhotoThumb'
}).appendTo(newCell);
How can I get the thumbnails to display on iPhone and iPad?