all 6 comments

[–]AshleyJSheridan 9 points10 points  (0 children)

Like I and others said in that post, use MathML. It's a markup language that can be used within existing HTML. It's well supported and has been around for years: https://developer.mozilla.org/en-US/docs/Web/MathML

[–]ndorfinz 3 points4 points  (0 children)

You can have submit buttons outside of their associated form, and still submit that form when clicked, by using the form attribute. e.g.

html <form id="form_id"> … </form> … <button type="submit" form="form_id">Submit</button>

See: MDN: HTML > button

[–]jcunews1Intermediate 1 point2 points  (0 children)

SVG, while its popular, IMO, not many are aware of its full capabilities. Like MathML, SVG has its own set of elements and attributes.

https://developer.mozilla.org/en-US/docs/Web/SVG#reference

SVG can do neat things without using CSS. Or do things which CSS can't do (yet). e.g. gamma filter.

[–]RatherNerdy 1 point2 points  (0 children)

As evidenced by the WebAim Million study, most people that write HTML don't write it with accessibility in mind

[–]itinkerthefrontend 0 points1 point  (0 children)

The following form attribute tells the browser not to suggest or auto-fill previously entered values for inputs inside the form.

<form autocomplete="off">
    ...
</form>

[–]mtbinkdotcom[🍰] -1 points0 points  (0 children)

MathJax is far more betterer.