johndatserakis / file-upload-with-preview

🖼 Simple file-upload utility that shows a preview of the uploaded image. Written in TypeScript. No dependencies. Works well with or without a framework.

Home Page:https://johndatserakis.github.io/file-upload-with-preview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to dynamically click the clear button?

manchumahara opened this issue · comments

I'm not sure about your exact use-case, but you could use querySelector to find the matching element and then click it. You could do then whenever you like, presumably when the data you need is ready.

const clearButton = document.querySelector('.clear-button');
clearButton.click();