14 lines
456 B
HTML
14 lines
456 B
HTML
<html>
|
|
<head>
|
|
<title>Assign window.lately</title>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
</head>
|
|
<body>
|
|
<h1>Assign window.lately</h1>
|
|
<p>location: <script>document.write(location);</script>
|
|
<p>location.protocol: <script>document.write(location.protocol);</script>
|
|
<p>equivalence <script>document.write(location.protocol === 'http:');</script>
|
|
<p>assignement <script>window.lately = (location.protocol === 'http:');</script>
|
|
</body>
|
|
</html>
|