When using frames, where should functions and variables be stored in a JavaScript-based Web site?
Mark must determine the number of elements in his user-input form.
Which property of the form object will return this number?
VBScript and _____________ are scripting languages that are similar in purpose. Both extend the capabilities of static Web pages.
function empObject(name, age, department) {
this.name = name;
this.age = age;
this.department = department;
this.showOne = showOne;
}
The code above Defines a constructor function for a custom object named empObject. It contains three properties: name, age, and department. It contains one method: showOne
Which information is required to generate a cookie?
Nadir has created several new instances of custom objects. How can he now allow access to this information with a Web browser?
Tanja wants to target the “parent” frame of all frames in her Web site. In HTML, this parent frame is called “_top”.
What is this parent called if Tanja decided to use JavaScript in her Web page?
The ________ method request user input through a text field within a dialog box.
Raul wants to display the current data and time in the Web page he just created.
Which JavaScript object can he use to access this information and display it on a Web page?
The main event handler associated with the checkbox object is _________.