When I click on \"Select File to Upload\" (i.e. input type=file) there is a delay between the time I clicked the button and selected the file to displaying selected file nex
I combined the approach from guest271314 with another method to get the results. I can say I could not have been able to get this far with out his help. on load on image is holding the loader till the image is completely loaded.
The method is
enter code here
$('#preview').bind("DOMSubtreeModified",function(){
$('#preview').find('img')
.on('load', function() { $.mobile.loading('hide'); });
});