When using frames, where should functions and variables be stored in a JavaScript-based Web site?
A _________ creates an empty template from which real-time objects, called __________, can be generated.
___________ is JavaScript's server-side solution. It enables you to connect Web pages to databases, as well as enable server-side image maps and save client state so that the computer will remember where the client is in a multi-page preocess.
Function blocks begin with the keyword __________ followed by the function name.
What will the following JavaScript code do when it runs?
var content="";
content += "<HTML><HEAD><BASE TARGET='_blank'></HEAD>";
content += "<BODY BGCOLOR='#CC9966' TEXT='#330000'>";
content += "Related Sites".big().fontcolor("blue") + "<P>\n";
content += "These sites are of interest to ";
content += "Afrikunda".italics();
content += " patrons.<P>\n";
_______ represent various attributes of an object, such as height, color, font size, sentence length, and so forth.
JavaScript and _____________ are scripting languages that are similar in purpose. Both extend the capabilities of static Web pages.
Which of the following is the JavaScript's server-side solution that enables you to connect Web pages to databases, as well as enable server-side image maps and save client state so that the computer will remember where the client is in a multi-page preocess.
Regarding cookies: If the expires attribute is not used, when will the cookie expire?
JavaScript offer a predefined method for determining when you should use custom objects instead of arrays for your programs.
A __________ is an organized block of code that handles actions generated by user events.
The term __________________ refers to any application, such as a Web Browser or help engine, that renders HTML for display to users.
The __________ method tests for the presence and position of a certain character.
Which is the JavaScript property that is used to inform a script that an image has finished loading?
Wilhelm is writing a constructor in JavaScript. He uses the word "this" when referring to the properties and methods in his object parameters and functions. Why?
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?