Background
jQuery provides many handy functions to speed up the development, for example
document.ready()
, element.toggle()
, element.hide()
, etc.
My math editor used some of them. However, I replaced them with
Vanilla JavaScript at commit 4a35c45b
.
Goal
Some users complained about the white background in the past versions of my editor. That had motivated me to refactor the code, so that it would be easier to maintain and to add in new features.
HTML5 input types used
Actual appearance might vary across browsers.
[Read More]