mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
18 lines
424 B
HTML
18 lines
424 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
|
|
<script src="../jquery.cookie.js"></script>
|
|
<script>
|
|
try {
|
|
Object.defineProperty(document, "cookie", { get: function() { return "first=one; ; second=two"; } });
|
|
window.testValue = $.cookie("second");
|
|
window.ok = true;
|
|
} catch (er) {
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|