Chapter 20 Answers
The
Ofunction returns an object by its ID, theSfunction returns thestyleproperty of an object, and theCfunction returns an array of all objects that access a given class.You can modify a CSS attribute of an object using the
setAttributefunction, like this:myobject.setAttribute('font-size', '16pt'). You can also (usually) modify an attribute directly, using slightly modified property names where required, like this:myobject.fontSize = '16pt'. (Recall that JavaScript reserves the hyphen character for use as a mathematical operator, so when accessing a hyphenated CSS property you must omit the hyphen and set the character that followed it to uppercase.)The properties that provide the width and height available in a browser window are
window.innerHeightandwindow.innerWidth.To make something happen when the mouse pointer passes over and out of an object, attach the code that does this to the
onmouseoverandonmouseoutevents.To create a new element, implement code such as
elem = document.createElement('span'), and to add the new element to the DOM, use code such asdocument.body.appendChild(elem).To make an element invisible, set its
visibilityproperty to'hidden'(use'visible'to restore it again). To collapse an element’s dimensions to zero, set itsdisplayproperty to'none'(use'block'to restore it).To set a single event at a future time, call the
setTimeoutfunction, passing it the code or function name to execute and the time delay in milliseconds. ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access