Skip to content Skip to sidebar Skip to footer

Storing Cookie Session Data To Jquery Using AJAX (Wihout PHP)

Having a tough time finding clear information if this is even possible. I am currently running on Sharepoint 2010. Working on a page using the REST method that uses AJAX. I was won

Solution 1:

I think you may use https://github.com/carhartl/jquery-cookie

You can then do: $.cookie('mycookie', 'mycookievalue');

To delete: $.removeCookie('mycookie');


Post a Comment for "Storing Cookie Session Data To Jquery Using AJAX (Wihout PHP)"