A button that changes its image on mouseover is an example of _______________.
___________ 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.
Which of the following is a correct way in JavaScript to target the second frame in a frames array, assuming the name of the frame is "b"?
What is the following?
Set-Cookie: name=Value: expires=date; path=path; domain=domain; secure
In JavaScript, ++x+ will add one to the value of x after the assignment is complete.
What willthe following JavaScript code do when it runs?
<SCRIPT Language="JavaScript">
<!--
var d=new Date;
var h=d.getHours();
var msg="";
var targ;
if(h<12)
msg="<h1>Good Morning!</h1>";
else if(h>=12 && h<18)
msg="<h1>Good Afternoon!</h1>";
else
msg="<h1>Good Evening!<h1>";
document.write(msg);
/-->
</SCRIPT>
Which of the following is the proper file extension for an external script file.
document.cookie = "name = value"; or document.cookie = "name = value;expi
es = date"; are both proper syntax for assigning cookies in JavaScript.
The ____________ contains path information for the URL that issued the cookie.
Which if any of the following enables you to access the methods and properties of the parent window from a newly opened child window?