Skip to content
Advertisement

Clicking on existing profile picture to upload and change image.

I have made a user profile card where the user can click on choose file to select and upload an image. enter image description here

Everything works fine however I would like to change it so instead of having to click on “choose file” and then click on “upload”, the user can just click on the existing image and be brought to the select image screen: enter image description here

and once they have selected a image and pressed open, the image is automatically changed?

This is my code to display the user profile card.

JavaScript

Advertisement

Answer

You can use a <label> tag attached the file input to trigger the open box or you can use a click handler on the image that triggers a click on the file input.

JavaScript

To get the file to upload immediately when selected you have to attach a change event handler for the image input. Then submit the form in it. You would have to change the submit button name to something other than submit to get this to work.

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement