diff options
Diffstat (limited to 'files/ru/web/api/element/insertadjacenttext/index.html')
-rw-r--r-- | files/ru/web/api/element/insertadjacenttext/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/api/element/insertadjacenttext/index.html b/files/ru/web/api/element/insertadjacenttext/index.html index 2b269e1291..f135d58f2d 100644 --- a/files/ru/web/api/element/insertadjacenttext/index.html +++ b/files/ru/web/api/element/insertadjacenttext/index.html @@ -7,7 +7,7 @@ translation_of: Web/API/Element/insertAdjacentText <p>The <strong><code>insertAdjacentText()</code></strong> <span id="result_box" lang="ru"><span>метод помещает заданный текстовый узел в указанную позицию относительно элемента, который передан в вызове</span></span> метода.</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre><em>element</em>.insertAdjacentText(<em>position</em>, <em>element</em>);</pre> @@ -60,7 +60,7 @@ foo <div class="note"><strong>Примечание:</strong> значения <code>beforebegin</code> и <code>afterend</code> работают только если targetElement находится в DOM-дереве и имеет родительский элемент.</div> -<h2 id="Example" name="Example">Пример</h2> +<h2 id="Example">Пример</h2> <pre class="brush: js">beforeBtn.addEventListener('click', function() { para.insertAdjacentText('afterbegin',textInput.value); @@ -87,7 +87,7 @@ afterBtn.addEventListener('click', function() { } </pre> -<h2 id="Specification" name="Specification">Спецификация</h2> +<h2 id="Specification">Спецификация</h2> <table class="standard-table"> <thead> @@ -106,7 +106,7 @@ afterBtn.addEventListener('click', function() { </tbody> </table> -<h2 id="Browser_Compatibility" name="Browser_Compatibility">Совместимость с браузерами</h2> +<h2 id="Browser_Compatibility">Совместимость с браузерами</h2> <p>{{Compat("api.Element.insertAdjacentText")}}</p> |