diff options
Diffstat (limited to 'files/pl/web/api/htmlorforeignelement/tabindex/index.html')
-rw-r--r-- | files/pl/web/api/htmlorforeignelement/tabindex/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/files/pl/web/api/htmlorforeignelement/tabindex/index.html b/files/pl/web/api/htmlorforeignelement/tabindex/index.html new file mode 100644 index 0000000000..dd8b28401b --- /dev/null +++ b/files/pl/web/api/htmlorforeignelement/tabindex/index.html @@ -0,0 +1,32 @@ +--- +title: element.tabIndex +slug: Web/API/HTMLOrForeignElement/tabIndex +tags: + - DOM + - Dokumentacja_Gecko_DOM + - Gecko + - Wszystkie_kategorie +translation_of: Web/API/HTMLOrForeignElement/tabIndex +original_slug: Web/API/Element/tabIndex +--- +<div> + {{APIRef}}</div> +<div> + </div> +<div> + <span style="font-size: 2.14285714285714rem; font-weight: 700; letter-spacing: -1px; line-height: 30px;">Podsumowanie</span></div> +<p>Pobiera/ustawia kolejność tabulacji dla bieżącego elementu.</p> +<h2 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h2> +<pre class="syntaxbox">element.tabIndex = <em>indeks</em> +</pre> +<ul> + <li><code>indeks</code> to liczba</li> +</ul> +<h2 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h2> +<pre class="brush:js">var b1 = document.getElementById("button1"); + +b1.tabIndex = 1;</pre> +<h2 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h2> +<ul> + <li><a class="external" href="http://www.w3.org/TR/2000/WD-DOM-Level-2-HTML-20001113/html.html#ID-40676705">tabIndex </a></li> +</ul> |