# JQuery-Session-Plugin **Repository Path**: hzdx/JQuery-Session-Plugin ## Basic Information - **Project Name**: JQuery-Session-Plugin - **Description**: Jquery-Session-Public - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-05-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #JQuery-Session-Plugin #How to use? $.session.set('some key', 'a value'); $.session.get('some key'); > "a value" $.session.clear(); $.session.get('some key'); > undefined $.session.set('some key', 'a value').get('some key'); > "a value" $.session.remove('some key'); $.session.get('some key'); > undefined From:https://github.com/AlexChittock/JQuery-Session-Plugin