Answers for "profile photo display bootstrap"

2

bootstrap profile picture

<img src="..." alt="..." class="img-thumbnail">
Posted by: Guest on June-05-2020
0

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 );
});
Posted by: Guest on July-08-2020

Browse Popular Code Answers by Language