| 190-753 Exam |
| 190-753 - Exam Information |
| Question of the day |
Paula is developing the Customer Registration form for her medical supply company. She already has a variable, frm, that references the current form. When a new customer is registering from the company Web site, if the customer enters "Dr." in the Title field, Paula wants to place the cursor in the Specialty field when the user leaves the Title field. What code should Paula use to accomplish this?
Answer(s)
Place this code in the onBlur event of the Title field: if (this.value == "Dr.") { frm.Specialty.focus(); }