| home / programming / prof_java2 / 1 | [previous] |
|
|
screen object (which, you may have
already guessed, is a property of window as well).
The screen object typically contains the following properties (although, as usual, many browsers add
their own properties):
|
The availHeight and availWidth properties are useful when determining the new size for a window.
For example, to fill up the user's screen, you could use this code:
window.moveTo(0, 0); |
This chapter introduced using JavaScript inside of Web browsers. It covered how to include JavaScript code in both HTML and SVG pages, explaining the differences between the two. It also discussed how XHTML has changed how JavaScript is included in HTML pages and the best way to prepare for the future in this regard.
Later in the chapter, you learned about the Browser Object Model and the various objects it supplies.
You learned that the window object is the center of the JavaScript universe, and all the other BOM objects
are actually just properties of window.
The chapter explained how to manipulate browser windows and frames, moving and resizing them
using JavaScript. Using the location object, you learned how to access and alter a window’s location
and, using the history object, how to go back and forward to pages the user has already visited.
Finally, you learned how to retrieve information about a user’s Web browser and screen by using the
navigator and screen objects.
Reproduced from "Professional JavaScript for Web Developers" by permission of WROX. ISBN 0764579088, copyright 2005. All rights reserved. See WROX for more information.
| home / programming / prof_java2 / 1 | [previous] |
Created: March 27 2003
Revised: June 27, 2005
URL: http://webreference.com/programming/prof_java2/1