jquery html() callback function
$('#divId').html(someText).promise().done(function(){
//your callback logic / code here
});
Based on Mike Robinson's (and dystroy's) suggestion the answer to my question is:
$("#myContentDiv").html('HTML content comes here');
var contentImages = $("#myContentDiv img");
var totalImages = contentImages.length;
var loadedImages = 0;
contentImages.each(function(){
$(this).on('load', function(){
loadedImages++;
if(loadedImages == totalImages)
{
$("#myContentDiv").tinyscrollbar();
}
});
});