Cookies management
Bootstrap 5 Cookies management plugin
This component is used to save in the browser data that we want to have access at the next user visit. For example how many times or when last time user visit our page.
Cookies management built with the latest Bootstrap 5. Options included: show modals only to new users, set a cookie, and much more.Note: Read the API tab to find all available options and advanced customization
Note: Currently, the plugin is only compatible with the basic MDB package imported in UMD format. More about import MDB formats.
Basic example
The Cookies Management Component provides methods to add, remove and get cookies.
Advanced example
Show Modal for new users
Using the showModalNewUser
method you can display the modal for new users.
Click the start button to start simulate this behavior. After next click modal won't show any
more until you click reset.
Show modal after next visit
To display the modal to a returning visitor, use
the showModalScoring
method. Enter, as a parameter, the number of visits after which the modal
should appear. Click the start button three times to test this feature.
Cookies management - API
Import
Usage
Via JavaScript
Methods
Name | Description | Example |
---|---|---|
set |
Set Cookie |
Cookie.set( ... );
|
get |
Get Cookie |
Cookie.get( ... );
|
remove |
Remove Cookie |
Cookie.remove( ... );
|