Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

codeXX's avatar
Level 1

Auto redirect to previous page after file selection dialog is cancelled.

Hi,

Today I was trying to upload files to my livewire project and I noticed when I click cancel on the OS file selection dialog the page is redirected back. Has anyone noticed this? How can I fix it?

0 likes
1 reply
codeXX's avatar
codeXX
OP
Best Answer
Level 1

Weird...!

I had to listen to cancel event on the file input and had to stopImmediatePropagation().


<input type="file" x-on:cancel="e => e.stopImmediatePropagation()" />


Please or to participate in this conversation.