190-753  Exam

Exam # of questions Description  Update
190-753 81 190-753 Using JavaScript in IBM Louts Domino 7 Ap... 02/15/2011
[Practice Test]    [Download Study Guide(PDF)]   [Update Exam]

190-753 - Exam Information
  • Description: 190-753 Using JavaScript in IBM Louts Domino 7 Applications
  • Passing Score: 75%
  • Practice Test - Number of questions: 81 questions
  • Simulation Test - Number of questions: 81 questions
  • Simulation Test Duration: 41 minutes
  • Has explanations: No

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)

  1. Place this code in the onBlur event of the Title field: if (this.value == "Dr.") { frm.Specialty.Select(); }
  2. Place this code in the exiting event of the Title field: if (frm.Title.value == "Dr.") { frm.Specialty.Select(); }
  3. Place this code in the onBlur event of the Title field: if (this.value == "Dr.") { frm.Specialty.focus(); }
  4. Place this code in the exiting event of the Title field: if (frm.Title.value == "Dr.") { frm.Specialty.focus(); }
Correct Answer

Place this code in the onBlur event of the Title field: if (this.value == "Dr.") { frm.Specialty.focus(); }