AnyTool
Your files never leave your device. All processing happens locally in your browser.

How do I use the Eisenhower priority matrix?

Open AnyTool Eisenhower Priority Matrix and you get a 2×2 grid with two axes — Urgent ↔ Not Urgent across the top and Important ↔ Not Important down the side — that creates four quadrants, each with a recommended action: Do (urgent + important, do it now), Schedule (important but not urgent, plan it), Delegate (urgent but not important, hand it off) and Delete (neither, drop it). Type a task in the add box, pick which quadrant (or the Inbox) it goes in, and it appears there colour-coded. Drag any task card from one quadrant to another — the target highlights as you hover — or, on touch, use the move arrows on a card. Tick a task to mark it done, click it to edit, and clear completed ones in a tap. Everything is saved automatically in this browser’s localStorage; Export downloads the whole matrix as JSON and Copy summary puts a Markdown checklist grouped by quadrant on your clipboard.

  • Four quadrants by urgency × importance: Do, Schedule, Delegate, Delete — each with its action
  • Add a task to any quadrant or the Inbox, then drag it between quadrants (native HTML5 DnD)
  • Mark tasks done, edit inline, delete, and clear all completed in one click
  • Live counts per quadrant; move arrows give a no-drag fallback on touch devices
  • Saved locally in your browser; Export / Import JSON and Copy a Markdown summary — 100% client-side

What is

Eisenhower matrix (priority matrix)

The Eisenhower matrix — also called the urgent/important matrix or priority matrix — is a decision tool that sorts tasks along two axes, urgent vs. not urgent and important vs. not important, into four quadrants and attaches an action to each: do urgent-and-important tasks now (Q1, Do), schedule important-but-not-urgent tasks for later (Q2, Schedule/Decide), delegate urgent-but-not-important tasks (Q3, Delegate) and delete tasks that are neither (Q4, Delete/Eliminate). Named after US President Dwight D. Eisenhower, it separates what feels urgent from what is genuinely important so you spend more time on Q2, the quadrant where long-term results are built. AnyTool’s version is a drag-and-drop 2×2 board that runs entirely in your browser and saves to localStorage, with JSON export/import and a Markdown summary.

Generators

Related terms

Eisenhower boxUrgent vs importantDo Schedule Delegate Delete4D ruleTime management matrixTask prioritisationQuadrant II

Frequently Asked Questions

They are saved only in your browser’s localStorage and never uploaded — there is no account, server or tracking, so the matrix stays completely private to this browser.

AnyTool Eisenhower Priority Matrix is 100% client-side. Every task — its text, its quadrant and whether it is done — is stored in your browser’s localStorage and is never sent to any server. There is no sign-up, no login and no analytics, and the tool keeps working offline once the page is cached. Because the data lives only in your browser, clearing your browsing data or switching to a different browser or device removes it, so use Export to download a JSON backup, or Copy summary for a Markdown checklist, that you can keep or re-import any time.

Do (urgent + important) now, Schedule (important, not urgent) for later, Delegate (urgent, not important) to someone else, and Delete (neither) — drop it.

The matrix crosses two questions — is it urgent, and is it important — to make four quadrants. Quadrant 1, Do, is urgent and important: handle it now (deadlines, crises). Quadrant 2, Schedule, is important but not urgent: plan time for it, because this is where long-term goals and prevention live and where you ideally spend most effort. Quadrant 3, Delegate, is urgent but not important: it needs doing soon but not by you, so hand it off. Quadrant 4, Delete, is neither urgent nor important: eliminate it. Deciding what is “important” is a personal judgement, which is why the tool lets you move tasks freely as your view changes.

Drag the task card and drop it into another quadrant; the target highlights as you hover. On touch, use the left/right move arrows on the card.

The matrix uses native HTML5 drag-and-drop with no external library. Pick up any task card and drop it onto a different quadrant — or the Inbox — and the destination highlights with a coloured ring while you hover, then the task is reassigned on drop. For touch screens or when dragging is awkward, every card shows move arrows that shift it to the previous or next quadrant, and the add box lets you choose a quadrant up front, so the whole tool works without a drag.

Yes — use Export to download the whole matrix as JSON, then Import it on another browser or device, or Copy a Markdown summary for a portable checklist.

Because the matrix is a personal, single-device tool with no cloud sync, Export and Import are how you move or back it up. Export downloads every task and its quadrant as a formatted JSON file; Import reads such a file (validating and migrating older or hand-edited data so it loads safely) and replaces the current matrix. Copy summary instead produces a Markdown checklist grouped by quadrant that you can paste anywhere. Keep an exported backup so a cleared cache or a switched browser never loses your work.

Detailed Explanation

Methodology

The Eisenhower Method and the Four Quadrants

The Eisenhower priority matrix sorts every task along two independent axes — urgent vs. not urgent and important vs. not important — which crosses into four quadrants, each with a recommended action. Quadrant 1, Do, is urgent and important: deadlines, crises and commitments you handle immediately. Quadrant 2, Schedule (sometimes called Decide), is important but not urgent: long-term goals, planning, learning and prevention — the quadrant where lasting results are built and where the method nudges you to spend most of your effort. Quadrant 3, Delegate, is urgent but not important: it needs doing soon but not by you, so hand it off. Quadrant 4, Delete (or Eliminate), is neither urgent nor important: drop it. AnyTool colour-codes the quadrants (red Do, blue Schedule, amber Delegate, grey Delete) and prints each one’s action beside its title, plus an optional Inbox for loose ideas you have not triaged yet. Crucially, whether a task is “important” is a personal judgement the tool leaves to you — it provides the structure, not the verdict.

  • Two axes — urgent/not-urgent × important/not-important — make four quadrants
  • Q1 Do (urgent + important) → now; Q2 Schedule (important, not urgent) → plan it
  • Q3 Delegate (urgent, not important) → hand off; Q4 Delete (neither) → drop
  • Q2 is where long-term results are built; the method pushes effort there
  • An Inbox holds unsorted tasks; importance is a judgement left to the user
Technical Details

The Task Model and Native Drag-and-Drop

AnyTool Priority Matrix keeps a single state object as its source of truth: an array of tasks where each task carries an id, its text, a quadrant (‘inbox’, ‘do’, ‘schedule’, ‘delegate’ or ‘delete’), a done flag and a created timestamp. The four quadrant tiles simply filter that one list by quadrant, so moving a task is just reassigning its quadrant field — no per-column arrays to keep in sync. Drag-and-drop uses the browser’s native HTML5 Drag and Drop API with no external library: on dragstart the dragged task’s id is stashed in a ref, each quadrant (and the Inbox) is a drop target whose dragover handler calls preventDefault() — which is what makes a drop possible — and highlights with a coloured ring, and drop reassigns the task’s quadrant to the one it landed on. For touch and pointer-limited use, every card also exposes move arrows that step it to the previous or next quadrant, and the add box lets you choose a quadrant up front, so nothing requires a drag. Tasks can be toggled done (with a strike-through), edited inline, and deleted, and a Clear done action removes all completed tasks at once.

  • State is one flat array of tasks; quadrant tiles filter it by the quadrant field
  • Moving a task = reassigning task.quadrant — no separate per-column arrays
  • Native HTML5 Drag and Drop API; dragover preventDefault() enables the drop; no DnD library
  • Quadrants and the Inbox are drop targets that ring-highlight on hover
  • Move arrows and a quadrant picker give a full no-drag fallback for touch
Privacy & Security

Local Storage, Export/Import and Honest Limits

Everything runs locally in the browser with no account, server or tracking. The whole matrix is serialised to localStorage on every change, so it survives a refresh, and the tool works offline once the page is cached — nothing is ever uploaded. Export downloads every task and its quadrant as a formatted JSON file, and Import reads such a file and replaces the matrix with it, validating and migrating the data (including a bare-array format from older builds) so an older or hand-edited file still loads safely. Copy summary instead produces a Markdown checklist grouped by quadrant — each section headed with its quadrant and action, each task a checkbox — for pasting into notes or a document; if the clipboard is unavailable it falls back to downloading a .md file. Honestly, this is a personal, single-device tool: there is no cloud sync, no reminders, no due dates and no sharing, so moving the matrix to another browser or device is done by exporting and importing the JSON. Sorting is a judgement call the tool cannot make for you, and a Reset to the starter example asks for confirmation because it is destructive. Because the data lives only in your browser, keeping an exported backup is recommended.

Priority Matrix: in-browser (AnyTool) vs typical online Eisenhower-matrix apps
CapabilityAnyToolTypical online matrix apps
Where it runs100% in your browser, nothing uploadedHosted — tasks stored on a server
AccountNone — open and useOften sign-up / login required
QuadrantsDo / Schedule / Delegate / Delete + InboxSame four quadrants
Drag & dropNative HTML5 DnD between quadrantsYes (library-based)
No-drag fallbackMove arrows + quadrant pickerVaries
Backup / moveExport & import JSON; copy Markdown summaryCloud sync; export sometimes paid
Reminders / syncNone (by design)Often a core paid feature
PrivacyTasks only in localStorageData held in the vendor cloud

AnyTool runs the whole matrix locally and uploads nothing; it is a private, single-device tool with JSON export/import and a Markdown summary rather than a synced, multi-user service.