We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 157ae71Copy full SHA for 157ae71
assignment1.html
@@ -0,0 +1,27 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Document</title>
8
+</head>
9
+<body>
10
+
11
+ <script type="text/javascript"> function readCookie(name)
12
+ {
13
+ var nameEQ = name + "harendracookie";
14
+ var ca = document.cookie.split(';');
15
+ for(var i=0;i < ca.length;i++)
16
17
+ var c = ca[i]; while (c.charAt(0)==' ')
18
+ c = c.substring(1,c.length);
19
+ if (c.indexOf(nameEQ) == 0)
20
+ return c.substring(nameEQ.length,c.length);
21
+ } return null;
22
+ }
23
+ </script>
24
25
26
+</body>
27
+</html>
0 commit comments