How browser games save your progress (and why it sometimes disappears)
Where a browser game keeps your levels, stars and unlocks, why the save is tied to one browser on one device, and the three things that wipe it without warning.
Almost every game on this site remembers something between visits: completed levels, best times, unlocked skins, a half-finished solitaire deal. Almost none of them ask you to log in. This guide explains where that memory actually lives, because knowing that is the difference between keeping a month of progress and losing it with one careless click.
The save lives in your browser, not on a server
A web page can store small amounts of data on your device using two browser features: localStorage, a simple key-value store, and IndexedDB, a larger structured database. Both are private to the website that wrote them, both survive closing the tab and restarting the computer, and both need no account. This is how nearly every free browser game saves.
The consequence is easy to state and easy to forget: the save is a file on this device, in this browser, belonging to the game's domain. There is no copy anywhere else unless the game offers an account system, and most do not.
Why the save belongs to the game's domain, not ours
When you play a game here it runs inside a frame from its distributor's domain. Browser storage is scoped to the origin that wrote it, so the game's save is stored under the distributor's domain rather than under neonpandagame.com. Two things follow. First, we cannot see, back up or restore your saves; they are not ours. Second, the same game embedded on a different website usually shares the save, because it is the same frame from the same domain, while the same game downloaded as an app does not.
Browsers are gradually tightening how third-party frames can use storage, and some already partition it per top-level site. If a game you had progress in on another site starts fresh here, that partitioning is the likely reason, not a bug in the game.
The three things that erase a save
Saves in browser storage vanish for exactly the reasons you would expect once you know where they are:
- Clearing site data or cookies. The browser's "clear browsing data" dialog, with cookies and site data ticked, deletes localStorage and IndexedDB along with the cookies. Clearing history alone does not. Some privacy extensions and "cleaner" utilities do this automatically on exit.
- Private or incognito windows. Storage written in a private window is discarded when the last private window closes. A game played in incognito starts from zero every time by design.
- Switching browser or device. Chrome's storage and Safari's storage are separate, as are your laptop's and your phone's. Progress made in one does not exist in the other. Signing into the browser syncs bookmarks and passwords but not site storage.
How to keep a save
The practical habits are short:
- Play a game in the same browser on the same device if you care about its progress.
- When clearing browsing data, untick cookies and site data, or use the per-site option to clear only the sites you mean.
- Finish a level or reach a checkpoint before closing the tab. Games save at moments they choose, usually level completion, and a tab closed mid-level may lose that level.
- Do not rely on a game keeping a long-term record. Treat browser saves as convenient, not permanent.
Games that offer an account
A minority of browser games, mostly online multiplayer titles and some card game collections, offer an optional login that copies your progress to their servers. That is the only way a save follows you between devices. If a game on this site has one, the review's questions section says so. We do not recommend creating accounts on games that do not need them; a login you never use is one more password to look after.
Why we mention saves in every review
Save behaviour is one of the things checked before a game is listed, because it changes how a game should be played. A puzzle collection with hundreds of levels is a different proposition if your place in it can disappear. The reviews say what a game remembers, and the parent's guide covers what that stored data does and does not contain. For the mechanics of what a game frame is allowed to store in the first place, see are browser games safe.
Questions people ask
- Can you restore my progress if I lose it?
- No. Saves are stored by the game under its distributor's domain on your device. We never have a copy. If a game offers its own account system, that is the only route to recovery.
- Will my progress carry over if I play the same game on another website?
- Often, because it is the same frame from the same domain, but not always. Browsers increasingly partition third-party storage per site, in which case the two copies keep separate saves.
- Does clearing history delete my saves?
- Clearing history alone does not. Clearing cookies and site data does. Check exactly what is ticked in the dialog before confirming.
Games mentioned in this guide
PuzzleSolitaire 8 Collection
4.5Eight solitaire variants under one menu, every deal checked to be solvable, with unlimited undo, hints and a shared daily challenge. Strongest on a desktop.
Read the review →
PuzzleSokoban Master
4.0A clean take on the 1982 crate-pushing classic with undo, star ratings for efficient solutions and a level editor. Best played with arrow keys.
Read the review →
SportsNeon Mini Golf
4.0A 39-hole browser mini golf with synthwave looks, drag-and-release putting, and bumpers, walls and teleporters in the way. Stars unlock the later holes.
Read the review →Keep reading
- explainer
Are browser games safe? What a game in an iframe can and cannot do
How a browser game is walled off from the page around it, what it can store, what it cannot reach, and the handful of warning signs that mean you should close the tab.
- how-to
Browser game running slowly? Nine fixes that actually work
Why a browser game stutters when the rest of the web feels fine, and the settings to check on a laptop, a phone and a Chromebook, in the order most likely to help.
- explainer
What is an HTML5 browser game, and why does it need no download?
How a game runs inside a web page: canvas and WebGL, engines like Unity and Godot, why the first load is slow, and what a browser game cannot do.