Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 158 Bytes

File metadata and controls

8 lines (7 loc) · 158 Bytes

Cookie

Get value of specific cookie

var regex = /MyCookie=(.[^;]*)/ig;
var match = regex.exec(document.cookie);
var value = match[1];