Which form element would you use to create a scriptable button other than a reset or submit button?
VBScript and _____________ are scripting languages that are similar in purpose. Both extend the capabilities of static Web pages.
Which property of the document object represents the color in which text is to be displayed?
Wilhelm is creating a Web page using JavaScript. He wants to set a cookie with each site visitor so that his Web server can recognize visitors on subsequent visits for one month.
Which one of the following choices contains the elements required in this cookie?
Consider the following HTML:
<|>|>
Which method of the String object is used to write the JavaScript equivalent to this HTML?
Jennie wants to retrieve the MIME information about her Web form.
Which property of the form object retrieves this information?
The first character of a variable must not be a letter or an underscore, but subsequent characters can be letters, numbers, and the underscore character.
The following are both advantages of creating user defined objects in JavaScript:
1. You can create sophisticated solutions with a minimum of coding.
2. You can represent programming constructs as objects (which allows you to code efficient schemes for evaluating forms or creating client-side databases).
A function that defines methods and properties of a custom object used as a template for instances of the custom object is a _______________
Placing // in front of a line of text, within the Script tags will result in ______________
The window object is subordinate to the document object in the JavaScript hierarchy.
A way to exit a loop that would otherwise continue to execute is to use the break statement. If a condition is reached, the user is allowed to break out of the loop. You can use the break statement within the ______________.
JavaScript contains both Keywords that you must use to achieve specific results and Reserved words that you are not permitted to use for variable or function names.
The _________ method, allows you to create text that is dynamically written to the window as the script is executed.
_______ are the actions that the object property can be made to perform, such as a calculation, an onscreen move, or the writing of text in a window.
Although not mandatory, it is advisable to define all your functions in the HEAD element of your HTML document.
A _______ is the specific color, width or height that belongs to the property of an object.
A server named www.thisserver.com can set a cookie for the domain www.thatserver.com.
The only way to use date and time information in JavaScript is through the Date object.
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 ___________________.
alinkColor, anchors, bgColor, cookie and fgColor are all properties of the _______________ object.
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.
A (an) __________ is a value or expression containing data or code that is passed on to a function or procedure.
JavaScript used two types of comment indicators. The _______ indicator delineates a comment on a single line of script. The _____ indicator is used for multiple line comments.
Chiyo wants to open a new window with JavaScript, but she repeatedly receives an error message. She reviews her code, as shown: open ("http://www.prolific.com ", "Pro Window" , "toolbar = 1 ,location = 1 ,menubar = 1 , scrollbars = 1 ,status = 1 ,resizable = 1"); Which one of the following choices shows how Chiyo should rewrite this line of code so that no errors result when it is executed?
Tanja needs to examine only a small portion of a string.
Which JavaScript method should she use to perform this task?
You are creating a Web page. You want to ensure that users who have older browsers that cannot display JavaScript can still view your home page.
How should you proceed?