mirror of
https://github.com/NohamR/Manuel.git
synced 2025-05-24 22:32:12 +00:00
26 lines
635 B
HTML
26 lines
635 B
HTML
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
document.cookie = "nom=valeur; expires=date; path=chemin";
|
|
|
|
|
|
var cookies = document.cookie.split(';');
|
|
for (var i = 0; i < cookies.length; i++) {
|
|
var cookie = cookies[i].trim();
|
|
if (cookie.indexOf('nom=') == 0) {
|
|
var valeur = cookie.substring('nom='.length, cookie.length);
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |