Universal Ctrl+Z for any web action.
DOM mutations, inputs, custom actions. 2 lines of code.
Any element added or removed is automatically tracked and restorable
Text field modifications are saved on blur and fully reversible
Push any action with your own undo/redo logic via Undo.push()
๐ Task list โ delete items then Ctrl+Z
โก Custom actions
๐ก DevTools open? Try Ctrl+Z right now
| Shortcut | Action |
|---|---|
Ctrl+Z / Cmd+Z | Undo last action |
Ctrl+Y | Redo |
Ctrl+Shift+Z | Redo (alt) |
| Action | |
|---|---|
| Element removed | โ restored at position |
| Element added | โ removed on undo |
| Attribute changed | โ reverted |
| Input blur | โ value reverted |
| Custom push() | โ anything you define |