I’m getting an incorrect result with the confirm option of submit
buttons. This source…
<%= button_to "Submit entire questionnaire", {},
:confirm => "Are you sure? You will not be able to make any
more changes.",
:id => ‘button-submit-entire’
%>
generates this html, whcih works fine…
But this source…
<%= submit_tag "Submit entire questionnaire",
:name => :submit_submit,
:id => :submit_submit,
:class => :submit_nav,
:confirm => "Are you sure? You will not be able to make any more
changes."
%>
generates this html, which looks wrong and does not do the
confirmation…
Rails bug? My error?
Thanks. --David.