SitePoint Sponsor |
|
User Tag List
Results 1 to 1 of 1
-
Feb 1, 2000, 16:30 #1
- Join Date
- Jan 2000
- Posts
- 26
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
per a newsgroup post, I'm using onfocus="form.typenextfieldnamehere.focus()"...
<form name="orderdetail:>
<input type="text" name="calculateprice" size="10" onfocus="orderdetail.visa.focus()">
<input type="checkbox" name="visa" value="yes">Visa</font>
</form>
If the next field is a checkbox/radiobutton, the text in
the calculateprice stays selected and I can even actually
enter the field.
How would I keep the user from being able to set focus
to the calculateprice text field and still set focus instead
to the visa checkbox?
Is this possible with checkboxes/radiobuttons?
I've already tried changing it to a radiobutton and using this:
onfocus="orderdetail.paymenttype[0].focus()" and get the same
result...
Bookmarks