The module is designed to save information to the user's local storage. At startup, it is checked whether the user has allowed saving to persistent storage.
If not allowed, the module will use the [[MemoryStorageProvider]] strategy.
const jodit = Jodit.make('#editor');jodit.storage.set('someKey', 1);// reload pagejodit.storage.get('someKey'); // 1 Copy
const jodit = Jodit.make('#editor');jodit.storage.set('someKey', 1);// reload pagejodit.storage.get('someKey'); // 1
If you like Jodit - try Jodit PRO
Persistent storage module
The module is designed to save information to the user's local storage. At startup, it is checked whether the user has allowed saving to persistent storage.