0
How to clear session using jQuery?
2 Antworten
+ 1
Use sessionStorage.clear() to clear the entire items in the session storage.
Use sessionStorage.removeItem('item_name) to clear a specific item in the session storage.
Hope this help :D
+ 1
Ok tx