Latest web development tutorials

HTML DOM cookie property

Document Object Reference Document Object

Definition and Usage

cookie property returns all cookies current document all key / value pairs.

grammar

document.cookie


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support cookie property


Examples

Examples

All cookies associated with the current document:

<html>
<body>

与此文档相关的Cookies:
<script>
document.write(document.cookie);
</script>

</body>
</html>

try it"


Document Object Reference Document Object