Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby on Rails: How do I add a confirmation to a submit_tag

<%= submit_tag "Delete" , :confirm => 'Are you sure you want to delete the selected?' %>

doesn't work.

how do I do this?

like image 390
NullVoxPopuli Avatar asked Jan 25 '26 21:01

NullVoxPopuli


1 Answers

Try this :

<%= submit_tag "Delete", data: { confirm: 'Are you sure you want to delete the selected?' }%>
like image 143
BigJim Avatar answered Jan 27 '26 12:01

BigJim



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!