aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/window/location/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/window/location/index.html')
-rw-r--r--files/ru/web/api/window/location/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/web/api/window/location/index.html b/files/ru/web/api/window/location/index.html
index ec98499a17..31445036f2 100644
--- a/files/ru/web/api/window/location/index.html
+++ b/files/ru/web/api/window/location/index.html
@@ -15,13 +15,13 @@ translation_of: Web/API/Window/location
<p>Хотя <code>Window.location</code> представляет собой объект <em>только для чтения</em> <code>Location</code>, вы можете присвоить ему  {{domxref("DOMString")}}. Это значит что в большинстве случаев вы можете работать с <code>location</code> как со строкой: <code>location = 'http://www.example.com'</code> это синоним для <code>location.href = 'http://www.example.com'</code>.</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="syntaxbox">var <em>oldLocation</em> = location;
location = <em>newLocation</em>;
</pre>
-<h2 id="Example" name="Example">Примеры</h2>
+<h2 id="Example">Примеры</h2>
<h3 id="Базовый_пример">Базовый пример</h3>