allows user to set the page focus to various elements on a html page.
<!---Head--->
NONE
<!---Body--->
<form>
<input type=button value="Focus On Link" onClick="document.links[0].focus()">
<input type=button value="Focus On Text Field" onClick="document.forms[0].text1.focus()">
<input type=button value="Focus On Select Box" onClick="document.forms[0].select1.focus()">
<input type=button value="Focus On Radio Button" onClick="document.forms[0].radio1.focus()">
<input type=button value="Focus On a Button" onClick="document.forms[0].button1.focus()">
<br><br><br>
<a href="blah">here</a>
<input type=text name=text1>
<select name=select1>
<option selected>Choose One...</option>
<option>Option1</option>
<option>Option2</option>
</select>
<input type=radio name=radio1>
<input type=button value="Sample Button" name=button1>
</form>
No Reviews to show
