get-translation
Version:
Effective translation workflow
19 lines (18 loc) • 424 B
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>