0
I’ve always made forms with <input type="submit" value="Enviar">
, but observing the bootstrap documentation I realized that they use Submit, so I decided to adopt this method because I always found strange the text "Send" inside the value of a input.
I wonder what the difference is between the two uses.
I imagine that the <input type="submit" value="Enviar">
in case you need to use two and so filter on the server or by javascript, which sending option the user chose. That’s it?
button
, by default, hastabindex=0
and must therefore be accessible byTab
(read more here). If it’s not like this, you must have changed it manually.– Woss
has something interesting here http://www.criaweb.com/artigos/botoes-html-com-tag-button.html
– user60252