Alert before button click
<button type="button" wire:click="remove({{ $user->id }})" onclick="return confirm('Are you sure you want to remove this?');" >
Remove User
</button>
New contributor
Payal Desai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
and move the wire:click after. It won’t get hit if the confirmation is cancelled.
onclick=”confirm(‘Are you sure you want to remove this?’) || event.stopImmediatePropagation()”
New contributor
Payal Desai is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.