en.javascript.info icon indicating copy to clipboard operation
en.javascript.info copied to clipboard

Missing closing tags

Open Baribj opened this issue 2 years ago • 0 comments

On the example: https://javascript.info/event-delegation#behavior-counter

Counter: <input type="button" value="1" data-counter>
One more counter: <input type="button" value="2" data-counter>

No closing tags. They don't throw an error because browser will fix them, but I think they should be fixed none the less.

Counter: <input type="button" value="1" data-counter />
One more counter: <input type="button" value="2" data-counter />

Baribj avatar Jul 30 '22 20:07 Baribj