Inline click handler
Example of something to avoid
by housecor
HTML
<input type="text" id="my-input" />
<a href="#" onclick="document.getElementById('my-input').style.display = 'none';">Hide input</a>
by housecor
<input type="text" id="my-input" />
<a href="#" onclick="document.getElementById('my-input').style.display = 'none';">Hide input</a>