Skip to main content

Posts

Showing posts with the label read cookies with key value pair in JavaScript jquery

read cookies with key value pair in JavaScript jquery

This is basically used to  read the cookies data by using the key and value pair in MVC 5 jQuery. The code sample as give below. var cookies = cookies || {}; cookies.read = new function   (){ function setCokiesValue(key, value) {     session[key] = value; }; var  session = []; var getCookie = function readCookie () {        match = document.cookie.match( new RegExp( 'MyCookieName' + '=([^;]+)' ));         if (match) {             var array = match[1].split( '&' );             for ( var i = 0; i < array.length; i++) {                 name = array[i].split( '=' )[0];                 value = array[i].split( '=' )[1];                 session.push(setCokiesValue(name, value));    ...