profile photo template bootstrap code example
Example 1: bootstrap profile picture
<img src="..." alt="..." class="img-thumbnail">
Example 2: edit profile photo bootstrap
$("#profileImage").click(function(e) {
$("#imageUpload").click();
});
function fasterPreview( uploader ) {
if ( uploader.files && uploader.files[0] ){
$('#profileImage').attr('src',
window.URL.createObjectURL(uploader.files[0]) );
}
}
$("#imageUpload").change(function(){
fasterPreview( this );
});