Which is the JavaScript property that is used to inform a script that an image has finished loading?
Which one of the following choices best describes how cookies are stored on a user’s hard drive?
The select object has three event handlers: __________, __________ and __________.
The __________ method tests for the presence and position of a certain character.
For a comment that extends beyond the current line, enclose the area that will not execute with ____________________________-
Which of the following would be the correct JavaScript way to make a text string appear in bold print?
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
A function that defines methods and properties of a custom object used as a template for instances of the custom object is a _______________
Which property of the form object is a string value that contains the name of the window or frame to which responses to form submissions are directed?
Consider the following HTML:
<|>|>
Which method of the String object is used to write the JavaScript equivalent to this HTML?
JavaScript is case sensitive, and the keyword "function" must be all lowercase.
Which one of the following choices best describes a fundamental problem with JavaScript Web sites?
A ____________ is an input object in the shape of a small square that can be selected, or checked on or off.
The __________ object is used to reflect information about the browser being used. This object can determine the brand and version of the browser in use, as well as the user's operating system.
Since JavaScript is case sensitive, using lower case to refer to language objects will result in an error.
If you want to declare a variable that can be accessed by more than one function or script block in your program, you will need to declare the variable ___________________.
The _______ indicator delineates a comment on a single line of script.
The _____ indicator is used for multiple line comments.
A _________ creates an empty template from which real-time objects, called __________, can be generated.
On of the most common and functional uses of client-side JavaScript is to _______________________________.
__________ is used frequently in JavaScript to combine text strings, especially in conjunction with prompt() and alert().
Creating your object references as elements of an array rather than creating individual variables will make them easier to use for repetitive tasks?
Which JavaScript keyword targets the parent of all parent files in a frameset?