Skip to content
Advertisement

Can a input type=”submit” button have an HTML label?

Can you put a tag, to be specific (ion icons) tag to an input type submit value?

I got these 2 tags and I need to combine them

JavaScript

Like so, But to make it work.

JavaScript

Advertisement

Answer

Not with <input type='submit' ...>, as HTML labels aren’t supported this way. From <input type="button"> MDN page:

Note: While <input> elements of type button are still perfectly valid HTML, the newer <button> element is now the favored way to create buttons. Given that a <button>’s label text is inserted between the opening and closing tags, you can include HTML in the label, even images.

As such, with the functionally-same <button> you can have HTML labels:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement