Fade & Remove

Fade an element to zero opacity using `transition`, then remove it from the DOM.

If you wish to fade an element out and remove it from the DOM, you can use something like this:

Example: Using the transition command
<div>
<button _="on click transition *opacity to 0 then remove me">
  Fade & Remove
</button>
</div>
Try It!