How can I include all the components in the html page - so each time I press TAB, I get the next element in the page, including labels!! for example:
<div class="input">
<h1 tabindex="0">I need that all the components will be in the list of tab-order, Including labels!</h1>
<label class="narrow-control label-top-right" for="txtName">name:</label>
<input type="text" name="txtName" class="inputText"/>
<label class="narrow-control label-top-right" for="txtAge">age:</label>
<input type="text" name="txtAge" class="inputText"/>
</div>