I want to have a confirmation popup on a <% f.submit %> call on a new object form. Is there a way to do this without javascript?
<% f.submit %>
The correct way is to use:
= f.submit "Save", data: { confirm: "Are you sure you want to submit this form?" }